blob: fc0b0daac93d251301f0ebcf1fafd40bb152b96b [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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
14#include <linux/debugfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/io.h>
16
17#include "uhci-hcd.h"
18
Alan Stern8d402e12005-12-17 18:03:37 -050019static struct dentry *uhci_debugfs_root;
20
21#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Alan Stern687f5f32005-11-30 17:16:19 -050023/* Handle REALLY large printks so we don't overflow buffers */
Alan Stern8d402e12005-12-17 18:03:37 -050024static void lprintk(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
26 char *p;
27
28 /* Just write one line at a time */
29 while (buf) {
30 p = strchr(buf, '\n');
31 if (p)
32 *p = 0;
33 printk(KERN_DEBUG "%s\n", buf);
34 buf = p;
35 if (buf)
36 buf++;
37 }
38}
39
Jan Andersson51e2f622011-05-18 10:44:51 +020040static int uhci_show_td(struct uhci_hcd *uhci, struct uhci_td *td, char *buf,
41 int len, int space)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 char *out = buf;
44 char *spid;
45 u32 status, token;
46
47 /* Try to make sure there's enough memory */
48 if (len < 160)
49 return 0;
50
Jan Andersson51e2f622011-05-18 10:44:51 +020051 status = td_status(uhci, td);
52 out += sprintf(out, "%*s[%p] link (%08x) ", space, "", td,
53 hc32_to_cpu(uhci, td->link));
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 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
Jan Andersson51e2f622011-05-18 10:44:51 +020068 token = td_token(uhci, td);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 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);
Jan Andersson51e2f622011-05-18 10:44:51 +020091 out += sprintf(out, "(buf=%08x)\n", hc32_to_cpu(uhci, td->buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 return out - buf;
94}
95
Jan Andersson51e2f622011-05-18 10:44:51 +020096static int uhci_show_urbp(struct uhci_hcd *uhci, struct urb_priv *urbp,
97 char *buf, int len, int space)
Alan Sterndccf4a42005-12-17 17:58:46 -050098{
99 char *out = buf;
100 struct uhci_td *td;
101 int i, nactive, ninactive;
Alan Stern4de7d2c2006-05-05 16:26:58 -0400102 char *ptype;
Alan Sterndccf4a42005-12-17 17:58:46 -0500103
104 if (len < 200)
105 return 0;
106
107 out += sprintf(out, "urb_priv [%p] ", urbp);
108 out += sprintf(out, "urb [%p] ", urbp->urb);
109 out += sprintf(out, "qh [%p] ", urbp->qh);
110 out += sprintf(out, "Dev=%d ", usb_pipedevice(urbp->urb->pipe));
111 out += sprintf(out, "EP=%x(%s) ", usb_pipeendpoint(urbp->urb->pipe),
112 (usb_pipein(urbp->urb->pipe) ? "IN" : "OUT"));
113
114 switch (usb_pipetype(urbp->urb->pipe)) {
Alan Stern4de7d2c2006-05-05 16:26:58 -0400115 case PIPE_ISOCHRONOUS: ptype = "ISO"; break;
116 case PIPE_INTERRUPT: ptype = "INT"; break;
117 case PIPE_BULK: ptype = "BLK"; break;
118 default:
119 case PIPE_CONTROL: ptype = "CTL"; break;
Alan Sterndccf4a42005-12-17 17:58:46 -0500120 }
121
Alan Stern4de7d2c2006-05-05 16:26:58 -0400122 out += sprintf(out, "%s%s", ptype, (urbp->fsbr ? " FSBR" : ""));
Alan Stern7ea0a2b2009-03-05 11:01:11 -0500123 out += sprintf(out, " Actlen=%d%s", urbp->urb->actual_length,
124 (urbp->qh->type == USB_ENDPOINT_XFER_CONTROL ?
125 "-8" : ""));
Alan Sterndccf4a42005-12-17 17:58:46 -0500126
Alan Sterneb231052007-08-21 15:40:36 -0400127 if (urbp->urb->unlinked)
128 out += sprintf(out, " Unlinked=%d", urbp->urb->unlinked);
Alan Sterndccf4a42005-12-17 17:58:46 -0500129 out += sprintf(out, "\n");
130
131 i = nactive = ninactive = 0;
132 list_for_each_entry(td, &urbp->td_list, list) {
Alan Sternc8155cc2006-05-19 16:52:35 -0400133 if (urbp->qh->type != USB_ENDPOINT_XFER_ISOC &&
134 (++i <= 10 || debug > 2)) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500135 out += sprintf(out, "%*s%d: ", space + 2, "", i);
Jan Andersson51e2f622011-05-18 10:44:51 +0200136 out += uhci_show_td(uhci, td, out,
137 len - (out - buf), 0);
Alan Sterndccf4a42005-12-17 17:58:46 -0500138 } else {
Jan Andersson51e2f622011-05-18 10:44:51 +0200139 if (td_status(uhci, td) & TD_CTRL_ACTIVE)
Alan Sterndccf4a42005-12-17 17:58:46 -0500140 ++nactive;
141 else
142 ++ninactive;
143 }
144 }
145 if (nactive + ninactive > 0)
146 out += sprintf(out, "%*s[skipped %d inactive and %d active "
147 "TDs]\n",
148 space, "", ninactive, nactive);
149
150 return out - buf;
151}
152
Alan Sterne009f1b2007-03-19 15:31:42 -0400153static int uhci_show_qh(struct uhci_hcd *uhci,
154 struct uhci_qh *qh, char *buf, int len, int space)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 char *out = buf;
Alan Sterndccf4a42005-12-17 17:58:46 -0500157 int i, nurbs;
Jan Andersson51e2f622011-05-18 10:44:51 +0200158 __hc32 element = qh_element(qh);
Alan Stern4de7d2c2006-05-05 16:26:58 -0400159 char *qtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 /* Try to make sure there's enough memory */
Alan Sterncaf38272006-05-19 16:44:55 -0400162 if (len < 80 * 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return 0;
164
Alan Stern4de7d2c2006-05-05 16:26:58 -0400165 switch (qh->type) {
166 case USB_ENDPOINT_XFER_ISOC: qtype = "ISO"; break;
167 case USB_ENDPOINT_XFER_INT: qtype = "INT"; break;
168 case USB_ENDPOINT_XFER_BULK: qtype = "BLK"; break;
169 case USB_ENDPOINT_XFER_CONTROL: qtype = "CTL"; break;
170 default: qtype = "Skel" ; break;
171 }
172
173 out += sprintf(out, "%*s[%p] %s QH link (%08x) element (%08x)\n",
174 space, "", qh, qtype,
Jan Andersson51e2f622011-05-18 10:44:51 +0200175 hc32_to_cpu(uhci, qh->link),
176 hc32_to_cpu(uhci, element));
Alan Sterncaf38272006-05-19 16:44:55 -0400177 if (qh->type == USB_ENDPOINT_XFER_ISOC)
Alan Stern3ca2a322007-01-16 11:56:32 -0500178 out += sprintf(out, "%*s period %d phase %d load %d us, "
179 "frame %x desc [%p]\n",
180 space, "", qh->period, qh->phase, qh->load,
181 qh->iso_frame, qh->iso_packet_desc);
182 else if (qh->type == USB_ENDPOINT_XFER_INT)
183 out += sprintf(out, "%*s period %d phase %d load %d us\n",
184 space, "", qh->period, qh->phase, qh->load);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Jan Andersson51e2f622011-05-18 10:44:51 +0200186 if (element & UHCI_PTR_QH(uhci))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 out += sprintf(out, "%*s Element points to QH (bug?)\n", space, "");
188
Jan Andersson51e2f622011-05-18 10:44:51 +0200189 if (element & UHCI_PTR_DEPTH(uhci))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 out += sprintf(out, "%*s Depth traverse\n", space, "");
191
Jan Andersson51e2f622011-05-18 10:44:51 +0200192 if (element & cpu_to_hc32(uhci, 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 out += sprintf(out, "%*s Bit 3 set (bug?)\n", space, "");
194
Jan Andersson51e2f622011-05-18 10:44:51 +0200195 if (!(element & ~(UHCI_PTR_QH(uhci) | UHCI_PTR_DEPTH(uhci))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 out += sprintf(out, "%*s Element is NULL (bug?)\n", space, "");
197
Alan Sterndccf4a42005-12-17 17:58:46 -0500198 if (list_empty(&qh->queue)) {
199 out += sprintf(out, "%*s queue is empty\n", space, "");
Alan Sterne009f1b2007-03-19 15:31:42 -0400200 if (qh == uhci->skel_async_qh)
Jan Andersson51e2f622011-05-18 10:44:51 +0200201 out += uhci_show_td(uhci, uhci->term_td, out,
Alan Sterne009f1b2007-03-19 15:31:42 -0400202 len - (out - buf), 0);
Alan Sterndccf4a42005-12-17 17:58:46 -0500203 } else {
204 struct urb_priv *urbp = list_entry(qh->queue.next,
205 struct urb_priv, node);
206 struct uhci_td *td = list_entry(urbp->td_list.next,
207 struct uhci_td, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Jan Andersson51e2f622011-05-18 10:44:51 +0200209 if (element != LINK_TO_TD(uhci, td))
Alan Sterndccf4a42005-12-17 17:58:46 -0500210 out += sprintf(out, "%*s Element != First TD\n",
211 space, "");
212 i = nurbs = 0;
213 list_for_each_entry(urbp, &qh->queue, node) {
214 if (++i <= 10)
Jan Andersson51e2f622011-05-18 10:44:51 +0200215 out += uhci_show_urbp(uhci, urbp, out,
Alan Sterndccf4a42005-12-17 17:58:46 -0500216 len - (out - buf), space + 2);
217 else
218 ++nurbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
Alan Sterndccf4a42005-12-17 17:58:46 -0500220 if (nurbs > 0)
221 out += sprintf(out, "%*s Skipped %d URBs\n",
222 space, "", nurbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224
Alan Stern85a975d2007-01-08 12:01:43 -0500225 if (qh->dummy_td) {
Alan Sternaf0bb592005-12-17 18:00:12 -0500226 out += sprintf(out, "%*s Dummy TD\n", space, "");
Jan Andersson51e2f622011-05-18 10:44:51 +0200227 out += uhci_show_td(uhci, qh->dummy_td, out,
228 len - (out - buf), 0);
Alan Sternaf0bb592005-12-17 18:00:12 -0500229 }
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return out - buf;
232}
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234static int uhci_show_sc(int port, unsigned short status, char *buf, int len)
235{
236 char *out = buf;
237
238 /* Try to make sure there's enough memory */
239 if (len < 160)
240 return 0;
241
242 out += sprintf(out, " stat%d = %04x %s%s%s%s%s%s%s%s%s%s\n",
243 port,
244 status,
245 (status & USBPORTSC_SUSP) ? " Suspend" : "",
246 (status & USBPORTSC_OCC) ? " OverCurrentChange" : "",
247 (status & USBPORTSC_OC) ? " OverCurrent" : "",
248 (status & USBPORTSC_PR) ? " Reset" : "",
249 (status & USBPORTSC_LSDA) ? " LowSpeed" : "",
250 (status & USBPORTSC_RD) ? " ResumeDetect" : "",
251 (status & USBPORTSC_PEC) ? " EnableChange" : "",
252 (status & USBPORTSC_PE) ? " Enabled" : "",
253 (status & USBPORTSC_CSC) ? " ConnectChange" : "",
254 (status & USBPORTSC_CCS) ? " Connected" : "");
255
256 return out - buf;
257}
258
Alan Sternc8f4fe42005-04-09 17:27:32 -0400259static int uhci_show_root_hub_state(struct uhci_hcd *uhci, char *buf, int len)
260{
261 char *out = buf;
262 char *rh_state;
263
264 /* Try to make sure there's enough memory */
265 if (len < 60)
266 return 0;
267
268 switch (uhci->rh_state) {
269 case UHCI_RH_RESET:
270 rh_state = "reset"; break;
271 case UHCI_RH_SUSPENDED:
272 rh_state = "suspended"; break;
273 case UHCI_RH_AUTO_STOPPED:
274 rh_state = "auto-stopped"; break;
275 case UHCI_RH_RESUMING:
276 rh_state = "resuming"; break;
277 case UHCI_RH_SUSPENDING:
278 rh_state = "suspending"; break;
279 case UHCI_RH_RUNNING:
280 rh_state = "running"; break;
281 case UHCI_RH_RUNNING_NODEVS:
282 rh_state = "running, no devs"; break;
283 default:
284 rh_state = "?"; break;
285 }
Alan Stern84afddd2006-05-12 11:35:45 -0400286 out += sprintf(out, "Root-hub state: %s FSBR: %d\n",
287 rh_state, uhci->fsbr_is_on);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400288 return out - buf;
289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291static int uhci_show_status(struct uhci_hcd *uhci, char *buf, int len)
292{
293 char *out = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 unsigned short usbcmd, usbstat, usbint, usbfrnum;
295 unsigned int flbaseadd;
296 unsigned char sof;
297 unsigned short portsc1, portsc2;
298
299 /* Try to make sure there's enough memory */
Alan Sternc4334722006-05-19 16:34:57 -0400300 if (len < 80 * 9)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return 0;
302
Jan Andersson9faa0912011-05-06 12:00:16 +0200303 usbcmd = uhci_readw(uhci, 0);
304 usbstat = uhci_readw(uhci, 2);
305 usbint = uhci_readw(uhci, 4);
306 usbfrnum = uhci_readw(uhci, 6);
307 flbaseadd = uhci_readl(uhci, 8);
308 sof = uhci_readb(uhci, 12);
309 portsc1 = uhci_readw(uhci, 16);
310 portsc2 = uhci_readw(uhci, 18);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 out += sprintf(out, " usbcmd = %04x %s%s%s%s%s%s%s%s\n",
313 usbcmd,
314 (usbcmd & USBCMD_MAXP) ? "Maxp64 " : "Maxp32 ",
315 (usbcmd & USBCMD_CF) ? "CF " : "",
316 (usbcmd & USBCMD_SWDBG) ? "SWDBG " : "",
317 (usbcmd & USBCMD_FGR) ? "FGR " : "",
318 (usbcmd & USBCMD_EGSM) ? "EGSM " : "",
319 (usbcmd & USBCMD_GRESET) ? "GRESET " : "",
320 (usbcmd & USBCMD_HCRESET) ? "HCRESET " : "",
321 (usbcmd & USBCMD_RS) ? "RS " : "");
322
323 out += sprintf(out, " usbstat = %04x %s%s%s%s%s%s\n",
324 usbstat,
325 (usbstat & USBSTS_HCH) ? "HCHalted " : "",
326 (usbstat & USBSTS_HCPE) ? "HostControllerProcessError " : "",
327 (usbstat & USBSTS_HSE) ? "HostSystemError " : "",
328 (usbstat & USBSTS_RD) ? "ResumeDetect " : "",
329 (usbstat & USBSTS_ERROR) ? "USBError " : "",
330 (usbstat & USBSTS_USBINT) ? "USBINT " : "");
331
332 out += sprintf(out, " usbint = %04x\n", usbint);
333 out += sprintf(out, " usbfrnum = (%d)%03x\n", (usbfrnum >> 10) & 1,
334 0xfff & (4*(unsigned int)usbfrnum));
335 out += sprintf(out, " flbaseadd = %08x\n", flbaseadd);
336 out += sprintf(out, " sof = %02x\n", sof);
337 out += uhci_show_sc(1, portsc1, out, len - (out - buf));
338 out += uhci_show_sc(2, portsc2, out, len - (out - buf));
Alan Sternc8155cc2006-05-19 16:52:35 -0400339 out += sprintf(out, "Most recent frame: %x (%d) "
340 "Last ISO frame: %x (%d)\n",
341 uhci->frame_number, uhci->frame_number & 1023,
342 uhci->last_iso_frame, uhci->last_iso_frame & 1023);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 return out - buf;
345}
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347static int uhci_sprint_schedule(struct uhci_hcd *uhci, char *buf, int len)
348{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 char *out = buf;
350 int i, j;
351 struct uhci_qh *qh;
352 struct uhci_td *td;
353 struct list_head *tmp, *head;
Alan Sternf3fe2392007-01-08 12:00:28 -0500354 int nframes, nerrs;
Jan Andersson51e2f622011-05-18 10:44:51 +0200355 __hc32 link;
356 __hc32 fsbr_link;
Alan Stern17230ac2007-02-19 15:52:45 -0500357
358 static const char * const qh_names[] = {
359 "unlink", "iso", "int128", "int64", "int32", "int16",
360 "int8", "int4", "int2", "async", "term"
361 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Alan Sternc8f4fe42005-04-09 17:27:32 -0400363 out += uhci_show_root_hub_state(uhci, out, len - (out - buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 out += sprintf(out, "HC status\n");
365 out += uhci_show_status(uhci, out, len - (out - buf));
Alan Stern3ca2a322007-01-16 11:56:32 -0500366
367 out += sprintf(out, "Periodic load table\n");
368 for (i = 0; i < MAX_PHASE; ++i) {
369 out += sprintf(out, "\t%d", uhci->load[i]);
370 if (i % 8 == 7)
371 *out++ = '\n';
372 }
373 out += sprintf(out, "Total: %d, #INT: %d, #ISO: %d\n",
374 uhci->total_load,
375 uhci_to_hcd(uhci)->self.bandwidth_int_reqs,
376 uhci_to_hcd(uhci)->self.bandwidth_isoc_reqs);
Alan Sterndccf4a42005-12-17 17:58:46 -0500377 if (debug <= 1)
378 return out - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 out += sprintf(out, "Frame List\n");
Alan Sternf3fe2392007-01-08 12:00:28 -0500381 nframes = 10;
382 nerrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 for (i = 0; i < UHCI_NUMFRAMES; ++i) {
Jan Andersson51e2f622011-05-18 10:44:51 +0200384 __hc32 qh_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Alan Sternf3fe2392007-01-08 12:00:28 -0500386 j = 0;
387 td = uhci->frame_cpu[i];
388 link = uhci->frame[i];
389 if (!td)
390 goto check_link;
391
392 if (nframes > 0) {
393 out += sprintf(out, "- Frame %d -> (%08x)\n",
Jan Andersson51e2f622011-05-18 10:44:51 +0200394 i, hc32_to_cpu(uhci, link));
Alan Sternf3fe2392007-01-08 12:00:28 -0500395 j = 1;
396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 head = &td->fl_list;
399 tmp = head;
400 do {
401 td = list_entry(tmp, struct uhci_td, fl_list);
402 tmp = tmp->next;
Jan Andersson51e2f622011-05-18 10:44:51 +0200403 if (link != LINK_TO_TD(uhci, td)) {
Alan Sternf3fe2392007-01-08 12:00:28 -0500404 if (nframes > 0)
405 out += sprintf(out, " link does "
406 "not match list entry!\n");
407 else
408 ++nerrs;
409 }
410 if (nframes > 0)
Jan Andersson51e2f622011-05-18 10:44:51 +0200411 out += uhci_show_td(uhci, td, out,
Alan Sternf3fe2392007-01-08 12:00:28 -0500412 len - (out - buf), 4);
413 link = td->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 } while (tmp != head);
Alan Sternf3fe2392007-01-08 12:00:28 -0500415
416check_link:
417 qh_dma = uhci_frame_skel_link(uhci, i);
418 if (link != qh_dma) {
419 if (nframes > 0) {
420 if (!j) {
421 out += sprintf(out,
422 "- Frame %d -> (%08x)\n",
Jan Andersson51e2f622011-05-18 10:44:51 +0200423 i, hc32_to_cpu(uhci, link));
Alan Sternf3fe2392007-01-08 12:00:28 -0500424 j = 1;
425 }
426 out += sprintf(out, " link does not match "
Jan Andersson51e2f622011-05-18 10:44:51 +0200427 "QH (%08x)!\n",
428 hc32_to_cpu(uhci, qh_dma));
Alan Sternf3fe2392007-01-08 12:00:28 -0500429 } else
430 ++nerrs;
431 }
432 nframes -= j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
Alan Sternf3fe2392007-01-08 12:00:28 -0500434 if (nerrs > 0)
435 out += sprintf(out, "Skipped %d bad links\n", nerrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Alan Stern687f5f32005-11-30 17:16:19 -0500437 out += sprintf(out, "Skeleton QHs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Alan Sterne009f1b2007-03-19 15:31:42 -0400439 fsbr_link = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 for (i = 0; i < UHCI_NUM_SKELQH; ++i) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500441 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 qh = uhci->skelqh[i];
Alan Stern17230ac2007-02-19 15:52:45 -0500444 out += sprintf(out, "- skel_%s_qh\n", qh_names[i]); \
Alan Sterne009f1b2007-03-19 15:31:42 -0400445 out += uhci_show_qh(uhci, qh, out, len - (out - buf), 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 /* Last QH is the Terminating QH, it's different */
Alan Stern17230ac2007-02-19 15:52:45 -0500448 if (i == SKEL_TERM) {
Jan Andersson51e2f622011-05-18 10:44:51 +0200449 if (qh_element(qh) != LINK_TO_TD(uhci, uhci->term_td))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 out += sprintf(out, " skel_term_qh element is not set to term_td!\n");
Alan Sterne009f1b2007-03-19 15:31:42 -0400451 link = fsbr_link;
452 if (!link)
Jan Andersson51e2f622011-05-18 10:44:51 +0200453 link = LINK_TO_QH(uhci, uhci->skel_term_qh);
Alan Sterne009f1b2007-03-19 15:31:42 -0400454 goto check_qh_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456
Alan Sterndccf4a42005-12-17 17:58:46 -0500457 head = &qh->node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 tmp = head->next;
459
460 while (tmp != head) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500461 qh = list_entry(tmp, struct uhci_qh, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 tmp = tmp->next;
Alan Sterndccf4a42005-12-17 17:58:46 -0500463 if (++cnt <= 10)
Alan Sterne009f1b2007-03-19 15:31:42 -0400464 out += uhci_show_qh(uhci, qh, out,
Alan Sterndccf4a42005-12-17 17:58:46 -0500465 len - (out - buf), 4);
Alan Stern17230ac2007-02-19 15:52:45 -0500466 if (!fsbr_link && qh->skel >= SKEL_FSBR)
Jan Andersson51e2f622011-05-18 10:44:51 +0200467 fsbr_link = LINK_TO_QH(uhci, qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
Alan Sterndccf4a42005-12-17 17:58:46 -0500469 if ((cnt -= 10) > 0)
470 out += sprintf(out, " Skipped %d QHs\n", cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Jan Andersson51e2f622011-05-18 10:44:51 +0200472 link = UHCI_PTR_TERM(uhci);
Alan Stern17230ac2007-02-19 15:52:45 -0500473 if (i <= SKEL_ISO)
474 ;
475 else if (i < SKEL_ASYNC)
Jan Andersson51e2f622011-05-18 10:44:51 +0200476 link = LINK_TO_QH(uhci, uhci->skel_async_qh);
Alan Stern17230ac2007-02-19 15:52:45 -0500477 else if (!uhci->fsbr_is_on)
478 ;
Alan Stern17230ac2007-02-19 15:52:45 -0500479 else
Jan Andersson51e2f622011-05-18 10:44:51 +0200480 link = LINK_TO_QH(uhci, uhci->skel_term_qh);
Alan Stern17230ac2007-02-19 15:52:45 -0500481check_qh_link:
482 if (qh->link != link)
483 out += sprintf(out, " last QH not linked to next skeleton!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return out - buf;
487}
488
Alan Stern8d402e12005-12-17 18:03:37 -0500489#ifdef CONFIG_DEBUG_FS
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491#define MAX_OUTPUT (64 * 1024)
492
493struct uhci_debug {
494 int size;
495 char *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496};
497
498static int uhci_debug_open(struct inode *inode, struct file *file)
499{
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700500 struct uhci_hcd *uhci = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 struct uhci_debug *up;
Alan Sterndccf4a42005-12-17 17:58:46 -0500502 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 up = kmalloc(sizeof(*up), GFP_KERNEL);
505 if (!up)
Andi Kleen00b81fb2010-06-01 23:04:43 +0200506 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 up->data = kmalloc(MAX_OUTPUT, GFP_KERNEL);
509 if (!up->data) {
510 kfree(up);
Andi Kleen00b81fb2010-06-01 23:04:43 +0200511 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513
Alan Stern8d402e12005-12-17 18:03:37 -0500514 up->size = 0;
Alan Sterndccf4a42005-12-17 17:58:46 -0500515 spin_lock_irqsave(&uhci->lock, flags);
Alan Stern8d402e12005-12-17 18:03:37 -0500516 if (uhci->is_initialized)
517 up->size = uhci_sprint_schedule(uhci, up->data, MAX_OUTPUT);
Alan Sterndccf4a42005-12-17 17:58:46 -0500518 spin_unlock_irqrestore(&uhci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 file->private_data = up;
521
Andi Kleen00b81fb2010-06-01 23:04:43 +0200522 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
525static loff_t uhci_debug_lseek(struct file *file, loff_t off, int whence)
526{
527 struct uhci_debug *up;
528 loff_t new = -1;
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 up = file->private_data;
531
Andi Kleen00b81fb2010-06-01 23:04:43 +0200532 /* XXX: atomic 64bit seek access, but that needs to be fixed in the VFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 switch (whence) {
534 case 0:
535 new = off;
536 break;
537 case 1:
538 new = file->f_pos + off;
539 break;
540 }
Andi Kleen00b81fb2010-06-01 23:04:43 +0200541
542 if (new < 0 || new > up->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return -EINVAL;
Andi Kleen00b81fb2010-06-01 23:04:43 +0200544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return (file->f_pos = new);
546}
547
548static ssize_t uhci_debug_read(struct file *file, char __user *buf,
549 size_t nbytes, loff_t *ppos)
550{
551 struct uhci_debug *up = file->private_data;
552 return simple_read_from_buffer(buf, nbytes, ppos, up->data, up->size);
553}
554
555static int uhci_debug_release(struct inode *inode, struct file *file)
556{
557 struct uhci_debug *up = file->private_data;
558
559 kfree(up->data);
560 kfree(up);
561
562 return 0;
563}
564
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300565static const struct file_operations uhci_debug_operations = {
Alan Stern8d402e12005-12-17 18:03:37 -0500566 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 .open = uhci_debug_open,
568 .llseek = uhci_debug_lseek,
569 .read = uhci_debug_read,
570 .release = uhci_debug_release,
571};
Alan Sternb4092142010-08-05 13:12:14 -0400572#define UHCI_DEBUG_OPS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Alan Stern8d402e12005-12-17 18:03:37 -0500574#endif /* CONFIG_DEBUG_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Alan Stern8d402e12005-12-17 18:03:37 -0500576#else /* DEBUG */
577
578static inline void lprintk(char *buf)
579{}
580
Alan Sterne009f1b2007-03-19 15:31:42 -0400581static inline int uhci_show_qh(struct uhci_hcd *uhci,
582 struct uhci_qh *qh, char *buf, int len, int space)
Alan Stern8d402e12005-12-17 18:03:37 -0500583{
584 return 0;
585}
586
587static inline int uhci_sprint_schedule(struct uhci_hcd *uhci,
588 char *buf, int len)
589{
590 return 0;
591}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593#endif