[PATCH] UHCI: store the period in the queue header
[safe/jmp/linux-2.6] / drivers / usb / host / uhci-debug.c
1 /*
2  * UHCI-specific debugging code. Invaluable when something
3  * goes wrong, but don't get in my face.
4  *
5  * Kernel visible pointers are surrounded in []s and bus
6  * visible pointers are surrounded in ()s
7  *
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
20 #define uhci_debug_operations (* (struct file_operations *) NULL)
21 static struct dentry *uhci_debugfs_root;
22
23 #ifdef DEBUG
24
25 /* Handle REALLY large printks so we don't overflow buffers */
26 static void lprintk(char *buf)
27 {
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
42 static 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
96 static 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;
101         char *ptype;
102
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)) {
114         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;
119         }
120
121         out += sprintf(out, "%s%s", ptype, (urbp->fsbr ? " FSBR" : ""));
122         out += sprintf(out, " Actlen=%d", urbp->urb->actual_length);
123
124         if (urbp->urb->status != -EINPROGRESS)
125                 out += sprintf(out, " Status=%d", urbp->urb->status);
126         out += sprintf(out, "\n");
127
128         i = nactive = ninactive = 0;
129         list_for_each_entry(td, &urbp->td_list, list) {
130                 if (++i <= 10 || debug > 2) {
131                         out += sprintf(out, "%*s%d: ", space + 2, "", i);
132                         out += uhci_show_td(td, out, len - (out - buf), 0);
133                 } else {
134                         if (td_status(td) & TD_CTRL_ACTIVE)
135                                 ++nactive;
136                         else
137                                 ++ninactive;
138                 }
139         }
140         if (nactive + ninactive > 0)
141                 out += sprintf(out, "%*s[skipped %d inactive and %d active "
142                                 "TDs]\n",
143                                 space, "", ninactive, nactive);
144
145         return out - buf;
146 }
147
148 static int uhci_show_qh(struct uhci_qh *qh, char *buf, int len, int space)
149 {
150         char *out = buf;
151         int i, nurbs;
152         __le32 element = qh_element(qh);
153         char *qtype;
154
155         /* Try to make sure there's enough memory */
156         if (len < 80 * 7)
157                 return 0;
158
159         switch (qh->type) {
160         case USB_ENDPOINT_XFER_ISOC: qtype = "ISO"; break;
161         case USB_ENDPOINT_XFER_INT: qtype = "INT"; break;
162         case USB_ENDPOINT_XFER_BULK: qtype = "BLK"; break;
163         case USB_ENDPOINT_XFER_CONTROL: qtype = "CTL"; break;
164         default: qtype = "Skel" ; break;
165         }
166
167         out += sprintf(out, "%*s[%p] %s QH link (%08x) element (%08x)\n",
168                         space, "", qh, qtype,
169                         le32_to_cpu(qh->link), le32_to_cpu(element));
170         if (qh->type == USB_ENDPOINT_XFER_ISOC)
171                 out += sprintf(out, "%*s    period %d\n",
172                                 space, "", qh->period);
173
174         if (element & UHCI_PTR_QH)
175                 out += sprintf(out, "%*s  Element points to QH (bug?)\n", space, "");
176
177         if (element & UHCI_PTR_DEPTH)
178                 out += sprintf(out, "%*s  Depth traverse\n", space, "");
179
180         if (element & cpu_to_le32(8))
181                 out += sprintf(out, "%*s  Bit 3 set (bug?)\n", space, "");
182
183         if (!(element & ~(UHCI_PTR_QH | UHCI_PTR_DEPTH)))
184                 out += sprintf(out, "%*s  Element is NULL (bug?)\n", space, "");
185
186         if (list_empty(&qh->queue)) {
187                 out += sprintf(out, "%*s  queue is empty\n", space, "");
188         } else {
189                 struct urb_priv *urbp = list_entry(qh->queue.next,
190                                 struct urb_priv, node);
191                 struct uhci_td *td = list_entry(urbp->td_list.next,
192                                 struct uhci_td, list);
193
194                 if (cpu_to_le32(td->dma_handle) != (element & ~UHCI_PTR_BITS))
195                         out += sprintf(out, "%*s Element != First TD\n",
196                                         space, "");
197                 i = nurbs = 0;
198                 list_for_each_entry(urbp, &qh->queue, node) {
199                         if (++i <= 10)
200                                 out += uhci_show_urbp(urbp, out,
201                                                 len - (out - buf), space + 2);
202                         else
203                                 ++nurbs;
204                 }
205                 if (nurbs > 0)
206                         out += sprintf(out, "%*s Skipped %d URBs\n",
207                                         space, "", nurbs);
208         }
209
210         if (qh->udev) {
211                 out += sprintf(out, "%*s  Dummy TD\n", space, "");
212                 out += uhci_show_td(qh->dummy_td, out, len - (out - buf), 0);
213         }
214
215         return out - buf;
216 }
217
218 static const char * const qh_names[] = {
219   "skel_unlink_qh", "skel_iso_qh",
220   "skel_int128_qh", "skel_int64_qh",
221   "skel_int32_qh", "skel_int16_qh",
222   "skel_int8_qh", "skel_int4_qh",
223   "skel_int2_qh", "skel_int1_qh",
224   "skel_ls_control_qh", "skel_fs_control_qh",
225   "skel_bulk_qh", "skel_term_qh"
226 };
227
228 static int uhci_show_sc(int port, unsigned short status, char *buf, int len)
229 {
230         char *out = buf;
231
232         /* Try to make sure there's enough memory */
233         if (len < 160)
234                 return 0;
235
236         out += sprintf(out, "  stat%d     =     %04x  %s%s%s%s%s%s%s%s%s%s\n",
237                 port,
238                 status,
239                 (status & USBPORTSC_SUSP) ?     " Suspend" : "",
240                 (status & USBPORTSC_OCC) ?      " OverCurrentChange" : "",
241                 (status & USBPORTSC_OC) ?       " OverCurrent" : "",
242                 (status & USBPORTSC_PR) ?       " Reset" : "",
243                 (status & USBPORTSC_LSDA) ?     " LowSpeed" : "",
244                 (status & USBPORTSC_RD) ?       " ResumeDetect" : "",
245                 (status & USBPORTSC_PEC) ?      " EnableChange" : "",
246                 (status & USBPORTSC_PE) ?       " Enabled" : "",
247                 (status & USBPORTSC_CSC) ?      " ConnectChange" : "",
248                 (status & USBPORTSC_CCS) ?      " Connected" : "");
249
250         return out - buf;
251 }
252
253 static int uhci_show_root_hub_state(struct uhci_hcd *uhci, char *buf, int len)
254 {
255         char *out = buf;
256         char *rh_state;
257
258         /* Try to make sure there's enough memory */
259         if (len < 60)
260                 return 0;
261
262         switch (uhci->rh_state) {
263             case UHCI_RH_RESET:
264                 rh_state = "reset";             break;
265             case UHCI_RH_SUSPENDED:
266                 rh_state = "suspended";         break;
267             case UHCI_RH_AUTO_STOPPED:
268                 rh_state = "auto-stopped";      break;
269             case UHCI_RH_RESUMING:
270                 rh_state = "resuming";          break;
271             case UHCI_RH_SUSPENDING:
272                 rh_state = "suspending";        break;
273             case UHCI_RH_RUNNING:
274                 rh_state = "running";           break;
275             case UHCI_RH_RUNNING_NODEVS:
276                 rh_state = "running, no devs";  break;
277             default:
278                 rh_state = "?";                 break;
279         }
280         out += sprintf(out, "Root-hub state: %s   FSBR: %d\n",
281                         rh_state, uhci->fsbr_is_on);
282         return out - buf;
283 }
284
285 static int uhci_show_status(struct uhci_hcd *uhci, char *buf, int len)
286 {
287         char *out = buf;
288         unsigned long io_addr = uhci->io_addr;
289         unsigned short usbcmd, usbstat, usbint, usbfrnum;
290         unsigned int flbaseadd;
291         unsigned char sof;
292         unsigned short portsc1, portsc2;
293
294         /* Try to make sure there's enough memory */
295         if (len < 80 * 9)
296                 return 0;
297
298         usbcmd    = inw(io_addr + 0);
299         usbstat   = inw(io_addr + 2);
300         usbint    = inw(io_addr + 4);
301         usbfrnum  = inw(io_addr + 6);
302         flbaseadd = inl(io_addr + 8);
303         sof       = inb(io_addr + 12);
304         portsc1   = inw(io_addr + 16);
305         portsc2   = inw(io_addr + 18);
306
307         out += sprintf(out, "  usbcmd    =     %04x   %s%s%s%s%s%s%s%s\n",
308                 usbcmd,
309                 (usbcmd & USBCMD_MAXP) ?    "Maxp64 " : "Maxp32 ",
310                 (usbcmd & USBCMD_CF) ?      "CF " : "",
311                 (usbcmd & USBCMD_SWDBG) ?   "SWDBG " : "",
312                 (usbcmd & USBCMD_FGR) ?     "FGR " : "",
313                 (usbcmd & USBCMD_EGSM) ?    "EGSM " : "",
314                 (usbcmd & USBCMD_GRESET) ?  "GRESET " : "",
315                 (usbcmd & USBCMD_HCRESET) ? "HCRESET " : "",
316                 (usbcmd & USBCMD_RS) ?      "RS " : "");
317
318         out += sprintf(out, "  usbstat   =     %04x   %s%s%s%s%s%s\n",
319                 usbstat,
320                 (usbstat & USBSTS_HCH) ?    "HCHalted " : "",
321                 (usbstat & USBSTS_HCPE) ?   "HostControllerProcessError " : "",
322                 (usbstat & USBSTS_HSE) ?    "HostSystemError " : "",
323                 (usbstat & USBSTS_RD) ?     "ResumeDetect " : "",
324                 (usbstat & USBSTS_ERROR) ?  "USBError " : "",
325                 (usbstat & USBSTS_USBINT) ? "USBINT " : "");
326
327         out += sprintf(out, "  usbint    =     %04x\n", usbint);
328         out += sprintf(out, "  usbfrnum  =   (%d)%03x\n", (usbfrnum >> 10) & 1,
329                 0xfff & (4*(unsigned int)usbfrnum));
330         out += sprintf(out, "  flbaseadd = %08x\n", flbaseadd);
331         out += sprintf(out, "  sof       =       %02x\n", sof);
332         out += uhci_show_sc(1, portsc1, out, len - (out - buf));
333         out += uhci_show_sc(2, portsc2, out, len - (out - buf));
334         out += sprintf(out, "Most recent frame: %x\n",
335                         uhci->frame_number);
336
337         return out - buf;
338 }
339
340 static int uhci_sprint_schedule(struct uhci_hcd *uhci, char *buf, int len)
341 {
342         char *out = buf;
343         int i, j;
344         struct uhci_qh *qh;
345         struct uhci_td *td;
346         struct list_head *tmp, *head;
347
348         out += uhci_show_root_hub_state(uhci, out, len - (out - buf));
349         out += sprintf(out, "HC status\n");
350         out += uhci_show_status(uhci, out, len - (out - buf));
351         if (debug <= 1)
352                 return out - buf;
353
354         out += sprintf(out, "Frame List\n");
355         for (i = 0; i < UHCI_NUMFRAMES; ++i) {
356                 td = uhci->frame_cpu[i];
357                 if (!td)
358                         continue;
359
360                 out += sprintf(out, "- Frame %d\n", i); \
361                 if (td->dma_handle != (dma_addr_t)uhci->frame[i])
362                         out += sprintf(out, "    frame list does not match td->dma_handle!\n");
363
364                 head = &td->fl_list;
365                 tmp = head;
366                 do {
367                         td = list_entry(tmp, struct uhci_td, fl_list);
368                         tmp = tmp->next;
369                         out += uhci_show_td(td, out, len - (out - buf), 4);
370                 } while (tmp != head);
371         }
372
373         out += sprintf(out, "Skeleton QHs\n");
374
375         for (i = 0; i < UHCI_NUM_SKELQH; ++i) {
376                 int cnt = 0;
377
378                 qh = uhci->skelqh[i];
379                 out += sprintf(out, "- %s\n", qh_names[i]); \
380                 out += uhci_show_qh(qh, out, len - (out - buf), 4);
381
382                 /* Last QH is the Terminating QH, it's different */
383                 if (i == UHCI_NUM_SKELQH - 1) {
384                         if (qh->link != UHCI_PTR_TERM)
385                                 out += sprintf(out, "    bandwidth reclamation on!\n");
386
387                         if (qh_element(qh) != cpu_to_le32(uhci->term_td->dma_handle))
388                                 out += sprintf(out, "    skel_term_qh element is not set to term_td!\n");
389
390                         continue;
391                 }
392
393                 j = (i < 9) ? 9 : i+1;          /* Next skeleton */
394                 head = &qh->node;
395                 tmp = head->next;
396
397                 while (tmp != head) {
398                         qh = list_entry(tmp, struct uhci_qh, node);
399                         tmp = tmp->next;
400                         if (++cnt <= 10)
401                                 out += uhci_show_qh(qh, out,
402                                                 len - (out - buf), 4);
403                 }
404                 if ((cnt -= 10) > 0)
405                         out += sprintf(out, "    Skipped %d QHs\n", cnt);
406
407                 if (i > 1 && i < UHCI_NUM_SKELQH - 1) {
408                         if (qh->link !=
409                             (cpu_to_le32(uhci->skelqh[j]->dma_handle) | UHCI_PTR_QH))
410                                 out += sprintf(out, "    last QH not linked to next skeleton!\n");
411                 }
412         }
413
414         return out - buf;
415 }
416
417 #ifdef CONFIG_DEBUG_FS
418
419 #define MAX_OUTPUT      (64 * 1024)
420
421 struct uhci_debug {
422         int size;
423         char *data;
424 };
425
426 static int uhci_debug_open(struct inode *inode, struct file *file)
427 {
428         struct uhci_hcd *uhci = inode->u.generic_ip;
429         struct uhci_debug *up;
430         int ret = -ENOMEM;
431         unsigned long flags;
432
433         lock_kernel();
434         up = kmalloc(sizeof(*up), GFP_KERNEL);
435         if (!up)
436                 goto out;
437
438         up->data = kmalloc(MAX_OUTPUT, GFP_KERNEL);
439         if (!up->data) {
440                 kfree(up);
441                 goto out;
442         }
443
444         up->size = 0;
445         spin_lock_irqsave(&uhci->lock, flags);
446         if (uhci->is_initialized)
447                 up->size = uhci_sprint_schedule(uhci, up->data, MAX_OUTPUT);
448         spin_unlock_irqrestore(&uhci->lock, flags);
449
450         file->private_data = up;
451
452         ret = 0;
453 out:
454         unlock_kernel();
455         return ret;
456 }
457
458 static loff_t uhci_debug_lseek(struct file *file, loff_t off, int whence)
459 {
460         struct uhci_debug *up;
461         loff_t new = -1;
462
463         lock_kernel();
464         up = file->private_data;
465
466         switch (whence) {
467         case 0:
468                 new = off;
469                 break;
470         case 1:
471                 new = file->f_pos + off;
472                 break;
473         }
474         if (new < 0 || new > up->size) {
475                 unlock_kernel();
476                 return -EINVAL;
477         }
478         unlock_kernel();
479         return (file->f_pos = new);
480 }
481
482 static ssize_t uhci_debug_read(struct file *file, char __user *buf,
483                                 size_t nbytes, loff_t *ppos)
484 {
485         struct uhci_debug *up = file->private_data;
486         return simple_read_from_buffer(buf, nbytes, ppos, up->data, up->size);
487 }
488
489 static int uhci_debug_release(struct inode *inode, struct file *file)
490 {
491         struct uhci_debug *up = file->private_data;
492
493         kfree(up->data);
494         kfree(up);
495
496         return 0;
497 }
498
499 #undef uhci_debug_operations
500 static struct file_operations uhci_debug_operations = {
501         .owner =        THIS_MODULE,
502         .open =         uhci_debug_open,
503         .llseek =       uhci_debug_lseek,
504         .read =         uhci_debug_read,
505         .release =      uhci_debug_release,
506 };
507
508 #endif  /* CONFIG_DEBUG_FS */
509
510 #else   /* DEBUG */
511
512 static inline void lprintk(char *buf)
513 {}
514
515 static inline int uhci_show_qh(struct uhci_qh *qh, char *buf,
516                 int len, int space)
517 {
518         return 0;
519 }
520
521 static inline int uhci_sprint_schedule(struct uhci_hcd *uhci,
522                 char *buf, int len)
523 {
524         return 0;
525 }
526
527 #endif