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/slab.h>
13 #include <linux/kernel.h>
14 #include <linux/debugfs.h>
15 #include <linux/smp_lock.h>
20 #define uhci_debug_operations (* (const struct file_operations *) NULL)
21 static struct dentry
*uhci_debugfs_root
;
25 /* Handle REALLY large printks so we don't overflow buffers */
26 static void lprintk(char *buf
)
30 /* Just write one line at a time */
32 p
= strchr(buf
, '\n');
35 printk(KERN_DEBUG
"%s\n", buf
);
42 static int uhci_show_td(struct uhci_td
*td
, char *buf
, int len
, int space
)
48 /* Try to make sure there's enough memory */
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 ",
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 " : "",
69 switch (uhci_packetid(token
)) {
84 out
+= sprintf(out
, "MaxLen=%x DT%d EndPt=%x Dev=%x, PID=%x(%s) ",
91 out
+= sprintf(out
, "(buf=%08x)\n", le32_to_cpu(td
->buffer
));
96 static int uhci_show_urbp(struct urb_priv
*urbp
, char *buf
, int len
, int space
)
100 int i
, nactive
, ninactive
;
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"));
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;
118 case PIPE_CONTROL
: ptype
= "CTL"; break;
121 out
+= sprintf(out
, "%s%s", ptype
, (urbp
->fsbr
? " FSBR" : ""));
122 out
+= sprintf(out
, " Actlen=%d%s", urbp
->urb
->actual_length
,
123 (urbp
->qh
->type
== USB_ENDPOINT_XFER_CONTROL
?
126 if (urbp
->urb
->unlinked
)
127 out
+= sprintf(out
, " Unlinked=%d", urbp
->urb
->unlinked
);
128 out
+= sprintf(out
, "\n");
130 i
= nactive
= ninactive
= 0;
131 list_for_each_entry(td
, &urbp
->td_list
, list
) {
132 if (urbp
->qh
->type
!= USB_ENDPOINT_XFER_ISOC
&&
133 (++i
<= 10 || debug
> 2)) {
134 out
+= sprintf(out
, "%*s%d: ", space
+ 2, "", i
);
135 out
+= uhci_show_td(td
, out
, len
- (out
- buf
), 0);
137 if (td_status(td
) & TD_CTRL_ACTIVE
)
143 if (nactive
+ ninactive
> 0)
144 out
+= sprintf(out
, "%*s[skipped %d inactive and %d active "
146 space
, "", ninactive
, nactive
);
151 static int uhci_show_qh(struct uhci_hcd
*uhci
,
152 struct uhci_qh
*qh
, char *buf
, int len
, int space
)
156 __le32 element
= qh_element(qh
);
159 /* Try to make sure there's enough memory */
164 case USB_ENDPOINT_XFER_ISOC
: qtype
= "ISO"; break;
165 case USB_ENDPOINT_XFER_INT
: qtype
= "INT"; break;
166 case USB_ENDPOINT_XFER_BULK
: qtype
= "BLK"; break;
167 case USB_ENDPOINT_XFER_CONTROL
: qtype
= "CTL"; break;
168 default: qtype
= "Skel" ; break;
171 out
+= sprintf(out
, "%*s[%p] %s QH link (%08x) element (%08x)\n",
172 space
, "", qh
, qtype
,
173 le32_to_cpu(qh
->link
), le32_to_cpu(element
));
174 if (qh
->type
== USB_ENDPOINT_XFER_ISOC
)
175 out
+= sprintf(out
, "%*s period %d phase %d load %d us, "
176 "frame %x desc [%p]\n",
177 space
, "", qh
->period
, qh
->phase
, qh
->load
,
178 qh
->iso_frame
, qh
->iso_packet_desc
);
179 else if (qh
->type
== USB_ENDPOINT_XFER_INT
)
180 out
+= sprintf(out
, "%*s period %d phase %d load %d us\n",
181 space
, "", qh
->period
, qh
->phase
, qh
->load
);
183 if (element
& UHCI_PTR_QH
)
184 out
+= sprintf(out
, "%*s Element points to QH (bug?)\n", space
, "");
186 if (element
& UHCI_PTR_DEPTH
)
187 out
+= sprintf(out
, "%*s Depth traverse\n", space
, "");
189 if (element
& cpu_to_le32(8))
190 out
+= sprintf(out
, "%*s Bit 3 set (bug?)\n", space
, "");
192 if (!(element
& ~(UHCI_PTR_QH
| UHCI_PTR_DEPTH
)))
193 out
+= sprintf(out
, "%*s Element is NULL (bug?)\n", space
, "");
195 if (list_empty(&qh
->queue
)) {
196 out
+= sprintf(out
, "%*s queue is empty\n", space
, "");
197 if (qh
== uhci
->skel_async_qh
)
198 out
+= uhci_show_td(uhci
->term_td
, out
,
199 len
- (out
- buf
), 0);
201 struct urb_priv
*urbp
= list_entry(qh
->queue
.next
,
202 struct urb_priv
, node
);
203 struct uhci_td
*td
= list_entry(urbp
->td_list
.next
,
204 struct uhci_td
, list
);
206 if (element
!= LINK_TO_TD(td
))
207 out
+= sprintf(out
, "%*s Element != First TD\n",
210 list_for_each_entry(urbp
, &qh
->queue
, node
) {
212 out
+= uhci_show_urbp(urbp
, out
,
213 len
- (out
- buf
), space
+ 2);
218 out
+= sprintf(out
, "%*s Skipped %d URBs\n",
223 out
+= sprintf(out
, "%*s Dummy TD\n", space
, "");
224 out
+= uhci_show_td(qh
->dummy_td
, out
, len
- (out
- buf
), 0);
230 static int uhci_show_sc(int port
, unsigned short status
, char *buf
, int len
)
234 /* Try to make sure there's enough memory */
238 out
+= sprintf(out
, " stat%d = %04x %s%s%s%s%s%s%s%s%s%s\n",
241 (status
& USBPORTSC_SUSP
) ? " Suspend" : "",
242 (status
& USBPORTSC_OCC
) ? " OverCurrentChange" : "",
243 (status
& USBPORTSC_OC
) ? " OverCurrent" : "",
244 (status
& USBPORTSC_PR
) ? " Reset" : "",
245 (status
& USBPORTSC_LSDA
) ? " LowSpeed" : "",
246 (status
& USBPORTSC_RD
) ? " ResumeDetect" : "",
247 (status
& USBPORTSC_PEC
) ? " EnableChange" : "",
248 (status
& USBPORTSC_PE
) ? " Enabled" : "",
249 (status
& USBPORTSC_CSC
) ? " ConnectChange" : "",
250 (status
& USBPORTSC_CCS
) ? " Connected" : "");
255 static int uhci_show_root_hub_state(struct uhci_hcd
*uhci
, char *buf
, int len
)
260 /* Try to make sure there's enough memory */
264 switch (uhci
->rh_state
) {
266 rh_state
= "reset"; break;
267 case UHCI_RH_SUSPENDED
:
268 rh_state
= "suspended"; break;
269 case UHCI_RH_AUTO_STOPPED
:
270 rh_state
= "auto-stopped"; break;
271 case UHCI_RH_RESUMING
:
272 rh_state
= "resuming"; break;
273 case UHCI_RH_SUSPENDING
:
274 rh_state
= "suspending"; break;
275 case UHCI_RH_RUNNING
:
276 rh_state
= "running"; break;
277 case UHCI_RH_RUNNING_NODEVS
:
278 rh_state
= "running, no devs"; break;
280 rh_state
= "?"; break;
282 out
+= sprintf(out
, "Root-hub state: %s FSBR: %d\n",
283 rh_state
, uhci
->fsbr_is_on
);
287 static int uhci_show_status(struct uhci_hcd
*uhci
, char *buf
, int len
)
290 unsigned long io_addr
= uhci
->io_addr
;
291 unsigned short usbcmd
, usbstat
, usbint
, usbfrnum
;
292 unsigned int flbaseadd
;
294 unsigned short portsc1
, portsc2
;
296 /* Try to make sure there's enough memory */
300 usbcmd
= inw(io_addr
+ 0);
301 usbstat
= inw(io_addr
+ 2);
302 usbint
= inw(io_addr
+ 4);
303 usbfrnum
= inw(io_addr
+ 6);
304 flbaseadd
= inl(io_addr
+ 8);
305 sof
= inb(io_addr
+ 12);
306 portsc1
= inw(io_addr
+ 16);
307 portsc2
= inw(io_addr
+ 18);
309 out
+= sprintf(out
, " usbcmd = %04x %s%s%s%s%s%s%s%s\n",
311 (usbcmd
& USBCMD_MAXP
) ? "Maxp64 " : "Maxp32 ",
312 (usbcmd
& USBCMD_CF
) ? "CF " : "",
313 (usbcmd
& USBCMD_SWDBG
) ? "SWDBG " : "",
314 (usbcmd
& USBCMD_FGR
) ? "FGR " : "",
315 (usbcmd
& USBCMD_EGSM
) ? "EGSM " : "",
316 (usbcmd
& USBCMD_GRESET
) ? "GRESET " : "",
317 (usbcmd
& USBCMD_HCRESET
) ? "HCRESET " : "",
318 (usbcmd
& USBCMD_RS
) ? "RS " : "");
320 out
+= sprintf(out
, " usbstat = %04x %s%s%s%s%s%s\n",
322 (usbstat
& USBSTS_HCH
) ? "HCHalted " : "",
323 (usbstat
& USBSTS_HCPE
) ? "HostControllerProcessError " : "",
324 (usbstat
& USBSTS_HSE
) ? "HostSystemError " : "",
325 (usbstat
& USBSTS_RD
) ? "ResumeDetect " : "",
326 (usbstat
& USBSTS_ERROR
) ? "USBError " : "",
327 (usbstat
& USBSTS_USBINT
) ? "USBINT " : "");
329 out
+= sprintf(out
, " usbint = %04x\n", usbint
);
330 out
+= sprintf(out
, " usbfrnum = (%d)%03x\n", (usbfrnum
>> 10) & 1,
331 0xfff & (4*(unsigned int)usbfrnum
));
332 out
+= sprintf(out
, " flbaseadd = %08x\n", flbaseadd
);
333 out
+= sprintf(out
, " sof = %02x\n", sof
);
334 out
+= uhci_show_sc(1, portsc1
, out
, len
- (out
- buf
));
335 out
+= uhci_show_sc(2, portsc2
, out
, len
- (out
- buf
));
336 out
+= sprintf(out
, "Most recent frame: %x (%d) "
337 "Last ISO frame: %x (%d)\n",
338 uhci
->frame_number
, uhci
->frame_number
& 1023,
339 uhci
->last_iso_frame
, uhci
->last_iso_frame
& 1023);
344 static int uhci_sprint_schedule(struct uhci_hcd
*uhci
, char *buf
, int len
)
350 struct list_head
*tmp
, *head
;
355 static const char * const qh_names
[] = {
356 "unlink", "iso", "int128", "int64", "int32", "int16",
357 "int8", "int4", "int2", "async", "term"
360 out
+= uhci_show_root_hub_state(uhci
, out
, len
- (out
- buf
));
361 out
+= sprintf(out
, "HC status\n");
362 out
+= uhci_show_status(uhci
, out
, len
- (out
- buf
));
364 out
+= sprintf(out
, "Periodic load table\n");
365 for (i
= 0; i
< MAX_PHASE
; ++i
) {
366 out
+= sprintf(out
, "\t%d", uhci
->load
[i
]);
370 out
+= sprintf(out
, "Total: %d, #INT: %d, #ISO: %d\n",
372 uhci_to_hcd(uhci
)->self
.bandwidth_int_reqs
,
373 uhci_to_hcd(uhci
)->self
.bandwidth_isoc_reqs
);
377 out
+= sprintf(out
, "Frame List\n");
380 for (i
= 0; i
< UHCI_NUMFRAMES
; ++i
) {
384 td
= uhci
->frame_cpu
[i
];
385 link
= uhci
->frame
[i
];
390 out
+= sprintf(out
, "- Frame %d -> (%08x)\n",
391 i
, le32_to_cpu(link
));
398 td
= list_entry(tmp
, struct uhci_td
, fl_list
);
400 if (link
!= LINK_TO_TD(td
)) {
402 out
+= sprintf(out
, " link does "
403 "not match list entry!\n");
408 out
+= uhci_show_td(td
, out
,
409 len
- (out
- buf
), 4);
411 } while (tmp
!= head
);
414 qh_dma
= uhci_frame_skel_link(uhci
, i
);
415 if (link
!= qh_dma
) {
419 "- Frame %d -> (%08x)\n",
420 i
, le32_to_cpu(link
));
423 out
+= sprintf(out
, " link does not match "
424 "QH (%08x)!\n", le32_to_cpu(qh_dma
));
431 out
+= sprintf(out
, "Skipped %d bad links\n", nerrs
);
433 out
+= sprintf(out
, "Skeleton QHs\n");
436 for (i
= 0; i
< UHCI_NUM_SKELQH
; ++i
) {
439 qh
= uhci
->skelqh
[i
];
440 out
+= sprintf(out
, "- skel_%s_qh\n", qh_names
[i
]); \
441 out
+= uhci_show_qh(uhci
, qh
, out
, len
- (out
- buf
), 4);
443 /* Last QH is the Terminating QH, it's different */
444 if (i
== SKEL_TERM
) {
445 if (qh_element(qh
) != LINK_TO_TD(uhci
->term_td
))
446 out
+= sprintf(out
, " skel_term_qh element is not set to term_td!\n");
449 link
= LINK_TO_QH(uhci
->skel_term_qh
);
456 while (tmp
!= head
) {
457 qh
= list_entry(tmp
, struct uhci_qh
, node
);
460 out
+= uhci_show_qh(uhci
, qh
, out
,
461 len
- (out
- buf
), 4);
462 if (!fsbr_link
&& qh
->skel
>= SKEL_FSBR
)
463 fsbr_link
= LINK_TO_QH(qh
);
466 out
+= sprintf(out
, " Skipped %d QHs\n", cnt
);
468 link
= UHCI_PTR_TERM
;
471 else if (i
< SKEL_ASYNC
)
472 link
= LINK_TO_QH(uhci
->skel_async_qh
);
473 else if (!uhci
->fsbr_is_on
)
476 link
= LINK_TO_QH(uhci
->skel_term_qh
);
478 if (qh
->link
!= link
)
479 out
+= sprintf(out
, " last QH not linked to next skeleton!\n");
485 #ifdef CONFIG_DEBUG_FS
487 #define MAX_OUTPUT (64 * 1024)
494 static int uhci_debug_open(struct inode
*inode
, struct file
*file
)
496 struct uhci_hcd
*uhci
= inode
->i_private
;
497 struct uhci_debug
*up
;
502 up
= kmalloc(sizeof(*up
), GFP_KERNEL
);
506 up
->data
= kmalloc(MAX_OUTPUT
, GFP_KERNEL
);
513 spin_lock_irqsave(&uhci
->lock
, flags
);
514 if (uhci
->is_initialized
)
515 up
->size
= uhci_sprint_schedule(uhci
, up
->data
, MAX_OUTPUT
);
516 spin_unlock_irqrestore(&uhci
->lock
, flags
);
518 file
->private_data
= up
;
526 static loff_t
uhci_debug_lseek(struct file
*file
, loff_t off
, int whence
)
528 struct uhci_debug
*up
;
532 up
= file
->private_data
;
539 new = file
->f_pos
+ off
;
542 if (new < 0 || new > up
->size
) {
547 return (file
->f_pos
= new);
550 static ssize_t
uhci_debug_read(struct file
*file
, char __user
*buf
,
551 size_t nbytes
, loff_t
*ppos
)
553 struct uhci_debug
*up
= file
->private_data
;
554 return simple_read_from_buffer(buf
, nbytes
, ppos
, up
->data
, up
->size
);
557 static int uhci_debug_release(struct inode
*inode
, struct file
*file
)
559 struct uhci_debug
*up
= file
->private_data
;
567 #undef uhci_debug_operations
568 static const struct file_operations uhci_debug_operations
= {
569 .owner
= THIS_MODULE
,
570 .open
= uhci_debug_open
,
571 .llseek
= uhci_debug_lseek
,
572 .read
= uhci_debug_read
,
573 .release
= uhci_debug_release
,
576 #endif /* CONFIG_DEBUG_FS */
580 static inline void lprintk(char *buf
)
583 static inline int uhci_show_qh(struct uhci_hcd
*uhci
,
584 struct uhci_qh
*qh
, char *buf
, int len
, int space
)
589 static inline int uhci_sprint_schedule(struct uhci_hcd
*uhci
,