blob: 28c1c51ec475b43fcbeceae0480e07a0cf32232d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * UHCI-specific debugging code. Invaluable when something
3 * goes wrong, but don't get in my face.
4 *
Alan Stern687f5f32005-11-30 17:16:19 -05005 * Kernel visible pointers are surrounded in []s and bus
6 * visible pointers are surrounded in ()s
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * (C) Copyright 1999 Linus Torvalds
9 * (C) Copyright 1999-2001 Johannes Erdfelt
10 */
11
12#include <linux/config.h>
13#include <linux/kernel.h>
14#include <linux/debugfs.h>
15#include <linux/smp_lock.h>
16#include <asm/io.h>
17
18#include "uhci-hcd.h"
19
Alan Stern8d402e12005-12-17 18:03:37 -050020#define uhci_debug_operations (* (struct file_operations *) NULL)
21static struct dentry *uhci_debugfs_root;
22
23#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Alan Stern687f5f32005-11-30 17:16:19 -050025/* Handle REALLY large printks so we don't overflow buffers */
Alan Stern8d402e12005-12-17 18:03:37 -050026static void lprintk(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
28 char *p;
29
30 /* Just write one line at a time */
31 while (buf) {
32 p = strchr(buf, '\n');
33 if (p)
34 *p = 0;
35 printk(KERN_DEBUG "%s\n", buf);
36 buf = p;
37 if (buf)
38 buf++;
39 }
40}
41
42static int uhci_show_td(struct uhci_td *td, char *buf, int len, int space)
43{
44 char *out = buf;
45 char *spid;
46 u32 status, token;
47
48 /* Try to make sure there's enough memory */
49 if (len < 160)
50 return 0;
51
52 status = td_status(td);
53 out += sprintf(out, "%*s[%p] link (%08x) ", space, "", td, le32_to_cpu(td->link));
54 out += sprintf(out, "e%d %s%s%s%s%s%s%s%s%s%sLength=%x ",
55 ((status >> 27) & 3),
56 (status & TD_CTRL_SPD) ? "SPD " : "",
57 (status & TD_CTRL_LS) ? "LS " : "",
58 (status & TD_CTRL_IOC) ? "IOC " : "",
59 (status & TD_CTRL_ACTIVE) ? "Active " : "",
60 (status & TD_CTRL_STALLED) ? "Stalled " : "",
61 (status & TD_CTRL_DBUFERR) ? "DataBufErr " : "",
62 (status & TD_CTRL_BABBLE) ? "Babble " : "",
63 (status & TD_CTRL_NAK) ? "NAK " : "",
64 (status & TD_CTRL_CRCTIMEO) ? "CRC/Timeo " : "",
65 (status & TD_CTRL_BITSTUFF) ? "BitStuff " : "",
66 status & 0x7ff);
67
68 token = td_token(td);
69 switch (uhci_packetid(token)) {
70 case USB_PID_SETUP:
71 spid = "SETUP";
72 break;
73 case USB_PID_OUT:
74 spid = "OUT";
75 break;
76 case USB_PID_IN:
77 spid = "IN";
78 break;
79 default:
80 spid = "?";
81 break;
82 }
83
84 out += sprintf(out, "MaxLen=%x DT%d EndPt=%x Dev=%x, PID=%x(%s) ",
85 token >> 21,
86 ((token >> 19) & 1),
87 (token >> 15) & 15,
88 (token >> 8) & 127,
89 (token & 0xff),
90 spid);
91 out += sprintf(out, "(buf=%08x)\n", le32_to_cpu(td->buffer));
92
93 return out - buf;
94}
95
Alan Sterndccf4a42005-12-17 17:58:46 -050096static int uhci_show_urbp(struct urb_priv *urbp, char *buf, int len, int space)
97{
98 char *out = buf;
99 struct uhci_td *td;
100 int i, nactive, ninactive;
Alan Stern4de7d2c2006-05-05 16:26:58 -0400101 char *ptype;
Alan Sterndccf4a42005-12-17 17:58:46 -0500102
103 if (len < 200)
104 return 0;
105
106 out += sprintf(out, "urb_priv [%p] ", urbp);
107 out += sprintf(out, "urb [%p] ", urbp->urb);
108 out += sprintf(out, "qh [%p] ", urbp->qh);
109 out += sprintf(out, "Dev=%d ", usb_pipedevice(urbp->urb->pipe));
110 out += sprintf(out, "EP=%x(%s) ", usb_pipeendpoint(urbp->urb->pipe),
111 (usb_pipein(urbp->urb->pipe) ? "IN" : "OUT"));
112
113 switch (usb_pipetype(urbp->urb->pipe)) {
Alan Stern4de7d2c2006-05-05 16:26:58 -0400114 case PIPE_ISOCHRONOUS: ptype = "ISO"; break;
115 case PIPE_INTERRUPT: ptype = "INT"; break;
116 case PIPE_BULK: ptype = "BLK"; break;
117 default:
118 case PIPE_CONTROL: ptype = "CTL"; break;
Alan Sterndccf4a42005-12-17 17:58:46 -0500119 }
120
Alan Stern4de7d2c2006-05-05 16:26:58 -0400121 out += sprintf(out, "%s%s", ptype, (urbp->fsbr ? " FSBR" : ""));
Alan Sterndccf4a42005-12-17 17:58:46 -0500122
123 if (urbp->urb->status != -EINPROGRESS)
124 out += sprintf(out, " Status=%d", urbp->urb->status);
125 out += sprintf(out, "\n");
126
127 i = nactive = ninactive = 0;
128 list_for_each_entry(td, &urbp->td_list, list) {
129 if (++i <= 10 || debug > 2) {
130 out += sprintf(out, "%*s%d: ", space + 2, "", i);
131 out += uhci_show_td(td, out, len - (out - buf), 0);
132 } else {
133 if (td_status(td) & TD_CTRL_ACTIVE)
134 ++nactive;
135 else
136 ++ninactive;
137 }
138 }
139 if (nactive + ninactive > 0)
140 out += sprintf(out, "%*s[skipped %d inactive and %d active "
141 "TDs]\n",
142 space, "", ninactive, nactive);
143
144 return out - buf;
145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static int uhci_show_qh(struct uhci_qh *qh, char *buf, int len, int space)
148{
149 char *out = buf;
Alan Sterndccf4a42005-12-17 17:58:46 -0500150 int i, nurbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 __le32 element = qh_element(qh);
Alan Stern4de7d2c2006-05-05 16:26:58 -0400152 char *qtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /* Try to make sure there's enough memory */
155 if (len < 80 * 6)
156 return 0;
157
Alan Stern4de7d2c2006-05-05 16:26:58 -0400158 switch (qh->type) {
159 case USB_ENDPOINT_XFER_ISOC: qtype = "ISO"; break;
160 case USB_ENDPOINT_XFER_INT: qtype = "INT"; break;
161 case USB_ENDPOINT_XFER_BULK: qtype = "BLK"; break;
162 case USB_ENDPOINT_XFER_CONTROL: qtype = "CTL"; break;
163 default: qtype = "Skel" ; break;
164 }
165
166 out += sprintf(out, "%*s[%p] %s QH link (%08x) element (%08x)\n",
167 space, "", qh, qtype,
168 le32_to_cpu(qh->link), le32_to_cpu(element));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 if (element & UHCI_PTR_QH)
171 out += sprintf(out, "%*s Element points to QH (bug?)\n", space, "");
172
173 if (element & UHCI_PTR_DEPTH)
174 out += sprintf(out, "%*s Depth traverse\n", space, "");
175
176 if (element & cpu_to_le32(8))
177 out += sprintf(out, "%*s Bit 3 set (bug?)\n", space, "");
178
179 if (!(element & ~(UHCI_PTR_QH | UHCI_PTR_DEPTH)))
180 out += sprintf(out, "%*s Element is NULL (bug?)\n", space, "");
181
Alan Sterndccf4a42005-12-17 17:58:46 -0500182 if (list_empty(&qh->queue)) {
183 out += sprintf(out, "%*s queue is empty\n", space, "");
184 } else {
185 struct urb_priv *urbp = list_entry(qh->queue.next,
186 struct urb_priv, node);
187 struct uhci_td *td = list_entry(urbp->td_list.next,
188 struct uhci_td, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Alan Sterndccf4a42005-12-17 17:58:46 -0500190 if (cpu_to_le32(td->dma_handle) != (element & ~UHCI_PTR_BITS))
191 out += sprintf(out, "%*s Element != First TD\n",
192 space, "");
193 i = nurbs = 0;
194 list_for_each_entry(urbp, &qh->queue, node) {
195 if (++i <= 10)
196 out += uhci_show_urbp(urbp, out,
197 len - (out - buf), space + 2);
198 else
199 ++nurbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
Alan Sterndccf4a42005-12-17 17:58:46 -0500201 if (nurbs > 0)
202 out += sprintf(out, "%*s Skipped %d URBs\n",
203 space, "", nurbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205
Alan Sternaf0bb592005-12-17 18:00:12 -0500206 if (qh->udev) {
207 out += sprintf(out, "%*s Dummy TD\n", space, "");
208 out += uhci_show_td(qh->dummy_td, out, len - (out - buf), 0);
209 }
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return out - buf;
212}
213
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100214static const char * const qh_names[] = {
Alan Sterndccf4a42005-12-17 17:58:46 -0500215 "skel_unlink_qh", "skel_iso_qh",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 "skel_int128_qh", "skel_int64_qh",
217 "skel_int32_qh", "skel_int16_qh",
218 "skel_int8_qh", "skel_int4_qh",
219 "skel_int2_qh", "skel_int1_qh",
220 "skel_ls_control_qh", "skel_fs_control_qh",
221 "skel_bulk_qh", "skel_term_qh"
222};
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224static int uhci_show_sc(int port, unsigned short status, char *buf, int len)
225{
226 char *out = buf;
227
228 /* Try to make sure there's enough memory */
229 if (len < 160)
230 return 0;
231
232 out += sprintf(out, " stat%d = %04x %s%s%s%s%s%s%s%s%s%s\n",
233 port,
234 status,
235 (status & USBPORTSC_SUSP) ? " Suspend" : "",
236 (status & USBPORTSC_OCC) ? " OverCurrentChange" : "",
237 (status & USBPORTSC_OC) ? " OverCurrent" : "",
238 (status & USBPORTSC_PR) ? " Reset" : "",
239 (status & USBPORTSC_LSDA) ? " LowSpeed" : "",
240 (status & USBPORTSC_RD) ? " ResumeDetect" : "",
241 (status & USBPORTSC_PEC) ? " EnableChange" : "",
242 (status & USBPORTSC_PE) ? " Enabled" : "",
243 (status & USBPORTSC_CSC) ? " ConnectChange" : "",
244 (status & USBPORTSC_CCS) ? " Connected" : "");
245
246 return out - buf;
247}
248
Alan Sternc8f4fe42005-04-09 17:27:32 -0400249static int uhci_show_root_hub_state(struct uhci_hcd *uhci, char *buf, int len)
250{
251 char *out = buf;
252 char *rh_state;
253
254 /* Try to make sure there's enough memory */
255 if (len < 60)
256 return 0;
257
258 switch (uhci->rh_state) {
259 case UHCI_RH_RESET:
260 rh_state = "reset"; break;
261 case UHCI_RH_SUSPENDED:
262 rh_state = "suspended"; break;
263 case UHCI_RH_AUTO_STOPPED:
264 rh_state = "auto-stopped"; break;
265 case UHCI_RH_RESUMING:
266 rh_state = "resuming"; break;
267 case UHCI_RH_SUSPENDING:
268 rh_state = "suspending"; break;
269 case UHCI_RH_RUNNING:
270 rh_state = "running"; break;
271 case UHCI_RH_RUNNING_NODEVS:
272 rh_state = "running, no devs"; break;
273 default:
274 rh_state = "?"; break;
275 }
276 out += sprintf(out, "Root-hub state: %s\n", rh_state);
277 return out - buf;
278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280static int uhci_show_status(struct uhci_hcd *uhci, char *buf, int len)
281{
282 char *out = buf;
283 unsigned long io_addr = uhci->io_addr;
284 unsigned short usbcmd, usbstat, usbint, usbfrnum;
285 unsigned int flbaseadd;
286 unsigned char sof;
287 unsigned short portsc1, portsc2;
288
289 /* Try to make sure there's enough memory */
290 if (len < 80 * 6)
291 return 0;
292
293 usbcmd = inw(io_addr + 0);
294 usbstat = inw(io_addr + 2);
295 usbint = inw(io_addr + 4);
296 usbfrnum = inw(io_addr + 6);
297 flbaseadd = inl(io_addr + 8);
298 sof = inb(io_addr + 12);
299 portsc1 = inw(io_addr + 16);
300 portsc2 = inw(io_addr + 18);
301
302 out += sprintf(out, " usbcmd = %04x %s%s%s%s%s%s%s%s\n",
303 usbcmd,
304 (usbcmd & USBCMD_MAXP) ? "Maxp64 " : "Maxp32 ",
305 (usbcmd & USBCMD_CF) ? "CF " : "",
306 (usbcmd & USBCMD_SWDBG) ? "SWDBG " : "",
307 (usbcmd & USBCMD_FGR) ? "FGR " : "",
308 (usbcmd & USBCMD_EGSM) ? "EGSM " : "",
309 (usbcmd & USBCMD_GRESET) ? "GRESET " : "",
310 (usbcmd & USBCMD_HCRESET) ? "HCRESET " : "",
311 (usbcmd & USBCMD_RS) ? "RS " : "");
312
313 out += sprintf(out, " usbstat = %04x %s%s%s%s%s%s\n",
314 usbstat,
315 (usbstat & USBSTS_HCH) ? "HCHalted " : "",
316 (usbstat & USBSTS_HCPE) ? "HostControllerProcessError " : "",
317 (usbstat & USBSTS_HSE) ? "HostSystemError " : "",
318 (usbstat & USBSTS_RD) ? "ResumeDetect " : "",
319 (usbstat & USBSTS_ERROR) ? "USBError " : "",
320 (usbstat & USBSTS_USBINT) ? "USBINT " : "");
321
322 out += sprintf(out, " usbint = %04x\n", usbint);
323 out += sprintf(out, " usbfrnum = (%d)%03x\n", (usbfrnum >> 10) & 1,
324 0xfff & (4*(unsigned int)usbfrnum));
325 out += sprintf(out, " flbaseadd = %08x\n", flbaseadd);
326 out += sprintf(out, " sof = %02x\n", sof);
327 out += uhci_show_sc(1, portsc1, out, len - (out - buf));
328 out += uhci_show_sc(2, portsc2, out, len - (out - buf));
329
330 return out - buf;
331}
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333static int uhci_sprint_schedule(struct uhci_hcd *uhci, char *buf, int len)
334{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 char *out = buf;
336 int i, j;
337 struct uhci_qh *qh;
338 struct uhci_td *td;
339 struct list_head *tmp, *head;
340
Alan Sternc8f4fe42005-04-09 17:27:32 -0400341 out += uhci_show_root_hub_state(uhci, out, len - (out - buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 out += sprintf(out, "HC status\n");
343 out += uhci_show_status(uhci, out, len - (out - buf));
Alan Sterndccf4a42005-12-17 17:58:46 -0500344 if (debug <= 1)
345 return out - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 out += sprintf(out, "Frame List\n");
348 for (i = 0; i < UHCI_NUMFRAMES; ++i) {
Alan Sterna1d59ce2005-09-16 14:22:51 -0400349 td = uhci->frame_cpu[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (!td)
351 continue;
352
Alan Sterndccf4a42005-12-17 17:58:46 -0500353 out += sprintf(out, "- Frame %d\n", i); \
354 if (td->dma_handle != (dma_addr_t)uhci->frame[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 out += sprintf(out, " frame list does not match td->dma_handle!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 head = &td->fl_list;
358 tmp = head;
359 do {
360 td = list_entry(tmp, struct uhci_td, fl_list);
361 tmp = tmp->next;
362 out += uhci_show_td(td, out, len - (out - buf), 4);
363 } while (tmp != head);
364 }
365
Alan Stern687f5f32005-11-30 17:16:19 -0500366 out += sprintf(out, "Skeleton QHs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 for (i = 0; i < UHCI_NUM_SKELQH; ++i) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500369 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 qh = uhci->skelqh[i];
Alan Sterndccf4a42005-12-17 17:58:46 -0500372 out += sprintf(out, "- %s\n", qh_names[i]); \
373 out += uhci_show_qh(qh, out, len - (out - buf), 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 /* Last QH is the Terminating QH, it's different */
376 if (i == UHCI_NUM_SKELQH - 1) {
377 if (qh->link != UHCI_PTR_TERM)
378 out += sprintf(out, " bandwidth reclamation on!\n");
379
380 if (qh_element(qh) != cpu_to_le32(uhci->term_td->dma_handle))
381 out += sprintf(out, " skel_term_qh element is not set to term_td!\n");
382
383 continue;
384 }
385
Alan Sterndccf4a42005-12-17 17:58:46 -0500386 j = (i < 9) ? 9 : i+1; /* Next skeleton */
387 head = &qh->node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 tmp = head->next;
389
390 while (tmp != head) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500391 qh = list_entry(tmp, struct uhci_qh, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 tmp = tmp->next;
Alan Sterndccf4a42005-12-17 17:58:46 -0500393 if (++cnt <= 10)
394 out += uhci_show_qh(qh, out,
395 len - (out - buf), 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
Alan Sterndccf4a42005-12-17 17:58:46 -0500397 if ((cnt -= 10) > 0)
398 out += sprintf(out, " Skipped %d QHs\n", cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Alan Sterndccf4a42005-12-17 17:58:46 -0500400 if (i > 1 && i < UHCI_NUM_SKELQH - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 if (qh->link !=
402 (cpu_to_le32(uhci->skelqh[j]->dma_handle) | UHCI_PTR_QH))
403 out += sprintf(out, " last QH not linked to next skeleton!\n");
404 }
405 }
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return out - buf;
408}
409
Alan Stern8d402e12005-12-17 18:03:37 -0500410#ifdef CONFIG_DEBUG_FS
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412#define MAX_OUTPUT (64 * 1024)
413
414struct uhci_debug {
415 int size;
416 char *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417};
418
419static int uhci_debug_open(struct inode *inode, struct file *file)
420{
421 struct uhci_hcd *uhci = inode->u.generic_ip;
422 struct uhci_debug *up;
423 int ret = -ENOMEM;
Alan Sterndccf4a42005-12-17 17:58:46 -0500424 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 lock_kernel();
427 up = kmalloc(sizeof(*up), GFP_KERNEL);
428 if (!up)
429 goto out;
430
431 up->data = kmalloc(MAX_OUTPUT, GFP_KERNEL);
432 if (!up->data) {
433 kfree(up);
434 goto out;
435 }
436
Alan Stern8d402e12005-12-17 18:03:37 -0500437 up->size = 0;
Alan Sterndccf4a42005-12-17 17:58:46 -0500438 spin_lock_irqsave(&uhci->lock, flags);
Alan Stern8d402e12005-12-17 18:03:37 -0500439 if (uhci->is_initialized)
440 up->size = uhci_sprint_schedule(uhci, up->data, MAX_OUTPUT);
Alan Sterndccf4a42005-12-17 17:58:46 -0500441 spin_unlock_irqrestore(&uhci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 file->private_data = up;
444
445 ret = 0;
446out:
447 unlock_kernel();
448 return ret;
449}
450
451static loff_t uhci_debug_lseek(struct file *file, loff_t off, int whence)
452{
453 struct uhci_debug *up;
454 loff_t new = -1;
455
456 lock_kernel();
457 up = file->private_data;
458
459 switch (whence) {
460 case 0:
461 new = off;
462 break;
463 case 1:
464 new = file->f_pos + off;
465 break;
466 }
467 if (new < 0 || new > up->size) {
468 unlock_kernel();
469 return -EINVAL;
470 }
471 unlock_kernel();
472 return (file->f_pos = new);
473}
474
475static ssize_t uhci_debug_read(struct file *file, char __user *buf,
476 size_t nbytes, loff_t *ppos)
477{
478 struct uhci_debug *up = file->private_data;
479 return simple_read_from_buffer(buf, nbytes, ppos, up->data, up->size);
480}
481
482static int uhci_debug_release(struct inode *inode, struct file *file)
483{
484 struct uhci_debug *up = file->private_data;
485
486 kfree(up->data);
487 kfree(up);
488
489 return 0;
490}
491
Alan Stern8d402e12005-12-17 18:03:37 -0500492#undef uhci_debug_operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493static struct file_operations uhci_debug_operations = {
Alan Stern8d402e12005-12-17 18:03:37 -0500494 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 .open = uhci_debug_open,
496 .llseek = uhci_debug_lseek,
497 .read = uhci_debug_read,
498 .release = uhci_debug_release,
499};
500
Alan Stern8d402e12005-12-17 18:03:37 -0500501#endif /* CONFIG_DEBUG_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Alan Stern8d402e12005-12-17 18:03:37 -0500503#else /* DEBUG */
504
505static inline void lprintk(char *buf)
506{}
507
508static inline int uhci_show_qh(struct uhci_qh *qh, char *buf,
509 int len, int space)
510{
511 return 0;
512}
513
514static inline int uhci_sprint_schedule(struct uhci_hcd *uhci,
515 char *buf, int len)
516{
517 return 0;
518}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520#endif