2 * UHCI-specific debugging code. Invaluable when something
3 * goes wrong, but don't get in my face.
5 * Kernel visible pointers are surrounded in []'s and bus
6 * visible pointers are surrounded in ()'s
8 * (C) Copyright 1999 Linus Torvalds
9 * (C) Copyright 1999-2001 Johannes Erdfelt
12 #include <linux/config.h>
13 #include <linux/kernel.h>
14 #include <linux/debugfs.h>
15 #include <linux/smp_lock.h>
20 static struct dentry *uhci_debugfs_root = NULL;
22 /* Handle REALLY large printk's so we don't overflow buffers */
23 static inline void lprintk(char *buf)
27 /* Just write one line at a time */
29 p = strchr(buf, '\n');
32 printk(KERN_DEBUG "%s\n", buf);
39 static int uhci_show_td(struct uhci_td *td, char *buf, int len, int space)
45 /* Try to make sure there's enough memory */
49 status = td_status(td);
50 out += sprintf(out, "%*s[%p] link (%08x) ", space, "", td, le32_to_cpu(td->link));
51 out += sprintf(out, "e%d %s%s%s%s%s%s%s%s%s%sLength=%x ",
53 (status & TD_CTRL_SPD) ? "SPD " : "",
54 (status & TD_CTRL_LS) ? "LS " : "",
55 (status & TD_CTRL_IOC) ? "IOC " : "",
56 (status & TD_CTRL_ACTIVE) ? "Active " : "",
57 (status & TD_CTRL_STALLED) ? "Stalled " : "",
58 (status & TD_CTRL_DBUFERR) ? "DataBufErr " : "",
59 (status & TD_CTRL_BABBLE) ? "Babble " : "",
60 (status & TD_CTRL_NAK) ? "NAK " : "",
61 (status & TD_CTRL_CRCTIMEO) ? "CRC/Timeo " : "",
62 (status & TD_CTRL_BITSTUFF) ? "BitStuff " : "",
66 switch (uhci_packetid(token)) {
81 out += sprintf(out, "MaxLen=%x DT%d EndPt=%x Dev=%x, PID=%x(%s) ",
88 out += sprintf(out, "(buf=%08x)\n", le32_to_cpu(td->buffer));
93 static int uhci_show_qh(struct uhci_qh *qh, char *buf, int len, int space)
96 struct urb_priv *urbp;
97 struct list_head *head, *tmp;
99 int i = 0, checked = 0, prevactive = 0;
100 __le32 element = qh_element(qh);
102 /* Try to make sure there's enough memory */
106 out += sprintf(out, "%*s[%p] link (%08x) element (%08x)\n", space, "",
107 qh, le32_to_cpu(qh->link), le32_to_cpu(element));
109 if (element & UHCI_PTR_QH)
110 out += sprintf(out, "%*s Element points to QH (bug?)\n", space, "");
112 if (element & UHCI_PTR_DEPTH)
113 out += sprintf(out, "%*s Depth traverse\n", space, "");
115 if (element & cpu_to_le32(8))
116 out += sprintf(out, "%*s Bit 3 set (bug?)\n", space, "");
118 if (!(element & ~(UHCI_PTR_QH | UHCI_PTR_DEPTH)))
119 out += sprintf(out, "%*s Element is NULL (bug?)\n", space, "");
122 out += sprintf(out, "%*s urbp == NULL\n", space, "");
128 head = &urbp->td_list;
131 td = list_entry(tmp, struct uhci_td, list);
133 if (cpu_to_le32(td->dma_handle) != (element & ~UHCI_PTR_BITS))
134 out += sprintf(out, "%*s Element != First TD\n", space, "");
136 while (tmp != head) {
137 struct uhci_td *td = list_entry(tmp, struct uhci_td, list);
141 out += sprintf(out, "%*s%d: ", space + 2, "", i++);
142 out += uhci_show_td(td, out, len - (out - buf), 0);
144 if (i > 10 && !checked && prevactive && tmp != head &&
146 struct list_head *ntmp = tmp;
147 struct uhci_td *ntd = td;
148 int active = 1, ni = i;
152 while (ntmp != head && ntmp->next != head && active) {
153 ntd = list_entry(ntmp, struct uhci_td, list);
157 active = td_status(ntd) & TD_CTRL_ACTIVE;
162 if (active && ni > i) {
163 out += sprintf(out, "%*s[skipped %d active TD's]\n", space, "", ni - i);
170 prevactive = td_status(td) & TD_CTRL_ACTIVE;
173 if (list_empty(&urbp->queue_list) || urbp->queued)
176 out += sprintf(out, "%*sQueued QH's:\n", -space, "--");
178 head = &urbp->queue_list;
181 while (tmp != head) {
182 struct urb_priv *nurbp = list_entry(tmp, struct urb_priv,
186 out += uhci_show_qh(nurbp->qh, out, len - (out - buf), space);
193 #define show_frame_num() \
196 out += sprintf(out, "- Frame %d\n", i); \
199 #ifdef CONFIG_PROC_FS
200 static const char *qh_names[] = {
201 "skel_int128_qh", "skel_int64_qh",
202 "skel_int32_qh", "skel_int16_qh",
203 "skel_int8_qh", "skel_int4_qh",
204 "skel_int2_qh", "skel_int1_qh",
205 "skel_ls_control_qh", "skel_fs_control_qh",
206 "skel_bulk_qh", "skel_term_qh"
209 #define show_qh_name() \
212 out += sprintf(out, "- %s\n", qh_names[i]); \
215 static int uhci_show_sc(int port, unsigned short status, char *buf, int len)
219 /* Try to make sure there's enough memory */
223 out += sprintf(out, " stat%d = %04x %s%s%s%s%s%s%s%s%s%s\n",
226 (status & USBPORTSC_SUSP) ? " Suspend" : "",
227 (status & USBPORTSC_OCC) ? " OverCurrentChange" : "",
228 (status & USBPORTSC_OC) ? " OverCurrent" : "",
229 (status & USBPORTSC_PR) ? " Reset" : "",
230 (status & USBPORTSC_LSDA) ? " LowSpeed" : "",
231 (status & USBPORTSC_RD) ? " ResumeDetect" : "",
232 (status & USBPORTSC_PEC) ? " EnableChange" : "",
233 (status & USBPORTSC_PE) ? " Enabled" : "",
234 (status & USBPORTSC_CSC) ? " ConnectChange" : "",
235 (status & USBPORTSC_CCS) ? " Connected" : "");
240 static int uhci_show_status(struct uhci_hcd *uhci, char *buf, int len)
243 unsigned long io_addr = uhci->io_addr;
244 unsigned short usbcmd, usbstat, usbint, usbfrnum;
245 unsigned int flbaseadd;
247 unsigned short portsc1, portsc2;
249 /* Try to make sure there's enough memory */
253 usbcmd = inw(io_addr + 0);
254 usbstat = inw(io_addr + 2);
255 usbint = inw(io_addr + 4);
256 usbfrnum = inw(io_addr + 6);
257 flbaseadd = inl(io_addr + 8);
258 sof = inb(io_addr + 12);
259 portsc1 = inw(io_addr + 16);
260 portsc2 = inw(io_addr + 18);
262 out += sprintf(out, " usbcmd = %04x %s%s%s%s%s%s%s%s\n",
264 (usbcmd & USBCMD_MAXP) ? "Maxp64 " : "Maxp32 ",
265 (usbcmd & USBCMD_CF) ? "CF " : "",
266 (usbcmd & USBCMD_SWDBG) ? "SWDBG " : "",
267 (usbcmd & USBCMD_FGR) ? "FGR " : "",
268 (usbcmd & USBCMD_EGSM) ? "EGSM " : "",
269 (usbcmd & USBCMD_GRESET) ? "GRESET " : "",
270 (usbcmd & USBCMD_HCRESET) ? "HCRESET " : "",
271 (usbcmd & USBCMD_RS) ? "RS " : "");
273 out += sprintf(out, " usbstat = %04x %s%s%s%s%s%s\n",
275 (usbstat & USBSTS_HCH) ? "HCHalted " : "",
276 (usbstat & USBSTS_HCPE) ? "HostControllerProcessError " : "",
277 (usbstat & USBSTS_HSE) ? "HostSystemError " : "",
278 (usbstat & USBSTS_RD) ? "ResumeDetect " : "",
279 (usbstat & USBSTS_ERROR) ? "USBError " : "",
280 (usbstat & USBSTS_USBINT) ? "USBINT " : "");
282 out += sprintf(out, " usbint = %04x\n", usbint);
283 out += sprintf(out, " usbfrnum = (%d)%03x\n", (usbfrnum >> 10) & 1,
284 0xfff & (4*(unsigned int)usbfrnum));
285 out += sprintf(out, " flbaseadd = %08x\n", flbaseadd);
286 out += sprintf(out, " sof = %02x\n", sof);
287 out += uhci_show_sc(1, portsc1, out, len - (out - buf));
288 out += uhci_show_sc(2, portsc2, out, len - (out - buf));
293 static int uhci_show_urbp(struct uhci_hcd *uhci, struct urb_priv *urbp, char *buf, int len)
295 struct list_head *tmp;
302 out += sprintf(out, "urb_priv [%p] ", urbp);
303 out += sprintf(out, "urb [%p] ", urbp->urb);
304 out += sprintf(out, "qh [%p] ", urbp->qh);
305 out += sprintf(out, "Dev=%d ", usb_pipedevice(urbp->urb->pipe));
306 out += sprintf(out, "EP=%x(%s) ", usb_pipeendpoint(urbp->urb->pipe), (usb_pipein(urbp->urb->pipe) ? "IN" : "OUT"));
308 switch (usb_pipetype(urbp->urb->pipe)) {
309 case PIPE_ISOCHRONOUS: out += sprintf(out, "ISO "); break;
310 case PIPE_INTERRUPT: out += sprintf(out, "INT "); break;
311 case PIPE_BULK: out += sprintf(out, "BLK "); break;
312 case PIPE_CONTROL: out += sprintf(out, "CTL "); break;
315 out += sprintf(out, "%s", (urbp->fsbr ? "FSBR " : ""));
316 out += sprintf(out, "%s", (urbp->fsbr_timeout ? "FSBR_TO " : ""));
318 if (urbp->urb->status != -EINPROGRESS)
319 out += sprintf(out, "Status=%d ", urbp->urb->status);
320 //out += sprintf(out, "Inserttime=%lx ",urbp->inserttime);
321 //out += sprintf(out, "FSBRtime=%lx ",urbp->fsbrtime);
324 list_for_each(tmp, &urbp->td_list)
326 out += sprintf(out, "TDs=%d ",count);
329 out += sprintf(out, "queued\n");
332 list_for_each(tmp, &urbp->queue_list)
334 out += sprintf(out, "queued URBs=%d\n", count);
340 static int uhci_show_lists(struct uhci_hcd *uhci, char *buf, int len)
343 struct list_head *head, *tmp;
346 out += sprintf(out, "Main list URBs:");
347 if (list_empty(&uhci->urb_list))
348 out += sprintf(out, " Empty\n");
350 out += sprintf(out, "\n");
352 head = &uhci->urb_list;
354 while (tmp != head) {
355 struct urb_priv *urbp = list_entry(tmp, struct urb_priv, urb_list);
357 out += sprintf(out, " %d: ", ++count);
358 out += uhci_show_urbp(uhci, urbp, out, len - (out - buf));
363 out += sprintf(out, "Remove list URBs:");
364 if (list_empty(&uhci->urb_remove_list))
365 out += sprintf(out, " Empty\n");
367 out += sprintf(out, "\n");
369 head = &uhci->urb_remove_list;
371 while (tmp != head) {
372 struct urb_priv *urbp = list_entry(tmp, struct urb_priv, urb_list);
374 out += sprintf(out, " %d: ", ++count);
375 out += uhci_show_urbp(uhci, urbp, out, len - (out - buf));
380 out += sprintf(out, "Complete list URBs:");
381 if (list_empty(&uhci->complete_list))
382 out += sprintf(out, " Empty\n");
384 out += sprintf(out, "\n");
386 head = &uhci->complete_list;
388 while (tmp != head) {
389 struct urb_priv *urbp = list_entry(tmp, struct urb_priv, urb_list);
391 out += sprintf(out, " %d: ", ++count);
392 out += uhci_show_urbp(uhci, urbp, out, len - (out - buf));
400 static int uhci_sprint_schedule(struct uhci_hcd *uhci, char *buf, int len)
407 struct list_head *tmp, *head;
409 spin_lock_irqsave(&uhci->lock, flags);
411 out += sprintf(out, "HC status\n");
412 out += uhci_show_status(uhci, out, len - (out - buf));
414 out += sprintf(out, "Frame List\n");
415 for (i = 0; i < UHCI_NUMFRAMES; ++i) {
417 td = uhci->fl->frame_cpu[i];
421 if (td->dma_handle != (dma_addr_t)uhci->fl->frame[i]) {
423 out += sprintf(out, " frame list does not match td->dma_handle!\n");
430 td = list_entry(tmp, struct uhci_td, fl_list);
432 out += uhci_show_td(td, out, len - (out - buf), 4);
433 } while (tmp != head);
436 out += sprintf(out, "Skeleton QH's\n");
438 for (i = 0; i < UHCI_NUM_SKELQH; ++i) {
441 qh = uhci->skelqh[i];
445 out += uhci_show_qh(qh, out, len - (out - buf), 4);
448 /* Last QH is the Terminating QH, it's different */
449 if (i == UHCI_NUM_SKELQH - 1) {
450 if (qh->link != UHCI_PTR_TERM)
451 out += sprintf(out, " bandwidth reclamation on!\n");
453 if (qh_element(qh) != cpu_to_le32(uhci->term_td->dma_handle))
454 out += sprintf(out, " skel_term_qh element is not set to term_td!\n");
459 j = (i < 7) ? 7 : i+1; /* Next skeleton */
460 if (list_empty(&qh->list)) {
461 if (i < UHCI_NUM_SKELQH - 1) {
463 (cpu_to_le32(uhci->skelqh[j]->dma_handle) | UHCI_PTR_QH)) {
465 out += sprintf(out, " skeleton QH not linked to next skeleton QH!\n");
477 while (tmp != head) {
478 qh = list_entry(tmp, struct uhci_qh, list);
482 out += uhci_show_qh(qh, out, len - (out - buf), 4);
485 if (i < UHCI_NUM_SKELQH - 1) {
487 (cpu_to_le32(uhci->skelqh[j]->dma_handle) | UHCI_PTR_QH))
488 out += sprintf(out, " last QH not linked to next skeleton!\n");
493 out += uhci_show_lists(uhci, out, len - (out - buf));
495 spin_unlock_irqrestore(&uhci->lock, flags);
500 #define MAX_OUTPUT (64 * 1024)
505 struct uhci_hcd *uhci;
508 static int uhci_debug_open(struct inode *inode, struct file *file)
510 struct uhci_hcd *uhci = inode->u.generic_ip;
511 struct uhci_debug *up;
515 up = kmalloc(sizeof(*up), GFP_KERNEL);
519 up->data = kmalloc(MAX_OUTPUT, GFP_KERNEL);
525 up->size = uhci_sprint_schedule(uhci, up->data, MAX_OUTPUT);
527 file->private_data = up;
535 static loff_t uhci_debug_lseek(struct file *file, loff_t off, int whence)
537 struct uhci_debug *up;
541 up = file->private_data;
548 new = file->f_pos + off;
551 if (new < 0 || new > up->size) {
556 return (file->f_pos = new);
559 static ssize_t uhci_debug_read(struct file *file, char __user *buf,
560 size_t nbytes, loff_t *ppos)
562 struct uhci_debug *up = file->private_data;
563 return simple_read_from_buffer(buf, nbytes, ppos, up->data, up->size);
566 static int uhci_debug_release(struct inode *inode, struct file *file)
568 struct uhci_debug *up = file->private_data;
576 static struct file_operations uhci_debug_operations = {
577 .open = uhci_debug_open,
578 .llseek = uhci_debug_lseek,
579 .read = uhci_debug_read,
580 .release = uhci_debug_release,
583 #else /* CONFIG_DEBUG_FS */
585 #define uhci_debug_operations (* (struct file_operations *) NULL)