blob: f882a84b1bbb7cdfaf11b8582658f408d0586905 [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
40static int uhci_show_td(struct uhci_td *td, char *buf, int len, int space)
41{
42 char *out = buf;
43 char *spid;
44 u32 status, token;
45
46 /* Try to make sure there's enough memory */
47 if (len < 160)
48 return 0;
49
50 status = td_status(td);
51 out += sprintf(out, "%*s[%p] link (%08x) ", space, "", td, le32_to_cpu(td->link));
52 out += sprintf(out, "e%d %s%s%s%s%s%s%s%s%s%sLength=%x ",
53 ((status >> 27) & 3),
54 (status & TD_CTRL_SPD) ? "SPD " : "",
55 (status & TD_CTRL_LS) ? "LS " : "",
56 (status & TD_CTRL_IOC) ? "IOC " : "",
57 (status & TD_CTRL_ACTIVE) ? "Active " : "",
58 (status & TD_CTRL_STALLED) ? "Stalled " : "",
59 (status & TD_CTRL_DBUFERR) ? "DataBufErr " : "",
60 (status & TD_CTRL_BABBLE) ? "Babble " : "",
61 (status & TD_CTRL_NAK) ? "NAK " : "",
62 (status & TD_CTRL_CRCTIMEO) ? "CRC/Timeo " : "",
63 (status & TD_CTRL_BITSTUFF) ? "BitStuff " : "",
64 status & 0x7ff);
65
66 token = td_token(td);
67 switch (uhci_packetid(token)) {
68 case USB_PID_SETUP:
69 spid = "SETUP";
70 break;
71 case USB_PID_OUT:
72 spid = "OUT";
73 break;
74 case USB_PID_IN:
75 spid = "IN";
76 break;
77 default:
78 spid = "?";
79 break;
80 }
81
82 out += sprintf(out, "MaxLen=%x DT%d EndPt=%x Dev=%x, PID=%x(%s) ",
83 token >> 21,
84 ((token >> 19) & 1),
85 (token >> 15) & 15,
86 (token >> 8) & 127,
87 (token & 0xff),
88 spid);
89 out += sprintf(out, "(buf=%08x)\n", le32_to_cpu(td->buffer));
90
91 return out - buf;
92}
93
Alan Sterndccf4a42005-12-17 17:58:46 -050094static int uhci_show_urbp(struct urb_priv *urbp, char *buf, int len, int space)
95{
96 char *out = buf;
97 struct uhci_td *td;
98 int i, nactive, ninactive;
Alan Stern4de7d2c2006-05-05 16:26:58 -040099 char *ptype;
Alan Sterndccf4a42005-12-17 17:58:46 -0500100
101 if (len < 200)
102 return 0;
103
104 out += sprintf(out, "urb_priv [%p] ", urbp);
105 out += sprintf(out, "urb [%p] ", urbp->urb);
106 out += sprintf(out, "qh [%p] ", urbp->qh);
107 out += sprintf(out, "Dev=%d ", usb_pipedevice(urbp->urb->pipe));
108 out += sprintf(out, "EP=%x(%s) ", usb_pipeendpoint(urbp->urb->pipe),
109 (usb_pipein(urbp->urb->pipe) ? "IN" : "OUT"));
110
111 switch (usb_pipetype(urbp->urb->pipe)) {
Alan Stern4de7d2c2006-05-05 16:26:58 -0400112 case PIPE_ISOCHRONOUS: ptype = "ISO"; break;
113 case PIPE_INTERRUPT: ptype = "INT"; break;
114 case PIPE_BULK: ptype = "BLK"; break;
115 default:
116 case PIPE_CONTROL: ptype = "CTL"; break;
Alan Sterndccf4a42005-12-17 17:58:46 -0500117 }
118
Alan Stern4de7d2c2006-05-05 16:26:58 -0400119 out += sprintf(out, "%s%s", ptype, (urbp->fsbr ? " FSBR" : ""));
Alan Stern7ea0a2b2009-03-05 11:01:11 -0500120 out += sprintf(out, " Actlen=%d%s", urbp->urb->actual_length,
121 (urbp->qh->type == USB_ENDPOINT_XFER_CONTROL ?
122 "-8" : ""));
Alan Sterndccf4a42005-12-17 17:58:46 -0500123
Alan Sterneb231052007-08-21 15:40:36 -0400124 if (urbp->urb->unlinked)
125 out += sprintf(out, " Unlinked=%d", urbp->urb->unlinked);
Alan Sterndccf4a42005-12-17 17:58:46 -0500126 out += sprintf(out, "\n");
127
128 i = nactive = ninactive = 0;
129 list_for_each_entry(td, &urbp->td_list, list) {
Alan Sternc8155cc2006-05-19 16:52:35 -0400130 if (urbp->qh->type != USB_ENDPOINT_XFER_ISOC &&
131 (++i <= 10 || debug > 2)) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500132 out += sprintf(out, "%*s%d: ", space + 2, "", i);
133 out += uhci_show_td(td, out, len - (out - buf), 0);
134 } else {
135 if (td_status(td) & TD_CTRL_ACTIVE)
136 ++nactive;
137 else
138 ++ninactive;
139 }
140 }
141 if (nactive + ninactive > 0)
142 out += sprintf(out, "%*s[skipped %d inactive and %d active "
143 "TDs]\n",
144 space, "", ninactive, nactive);
145
146 return out - buf;
147}
148
Alan Sterne009f1b2007-03-19 15:31:42 -0400149static int uhci_show_qh(struct uhci_hcd *uhci,
150 struct uhci_qh *qh, char *buf, int len, int space)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 char *out = buf;
Alan Sterndccf4a42005-12-17 17:58:46 -0500153 int i, nurbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 __le32 element = qh_element(qh);
Alan Stern4de7d2c2006-05-05 16:26:58 -0400155 char *qtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 /* Try to make sure there's enough memory */
Alan Sterncaf38272006-05-19 16:44:55 -0400158 if (len < 80 * 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return 0;
160
Alan Stern4de7d2c2006-05-05 16:26:58 -0400161 switch (qh->type) {
162 case USB_ENDPOINT_XFER_ISOC: qtype = "ISO"; break;
163 case USB_ENDPOINT_XFER_INT: qtype = "INT"; break;
164 case USB_ENDPOINT_XFER_BULK: qtype = "BLK"; break;
165 case USB_ENDPOINT_XFER_CONTROL: qtype = "CTL"; break;
166 default: qtype = "Skel" ; break;
167 }
168
169 out += sprintf(out, "%*s[%p] %s QH link (%08x) element (%08x)\n",
170 space, "", qh, qtype,
171 le32_to_cpu(qh->link), le32_to_cpu(element));
Alan Sterncaf38272006-05-19 16:44:55 -0400172 if (qh->type == USB_ENDPOINT_XFER_ISOC)
Alan Stern3ca2a322007-01-16 11:56:32 -0500173 out += sprintf(out, "%*s period %d phase %d load %d us, "
174 "frame %x desc [%p]\n",
175 space, "", qh->period, qh->phase, qh->load,
176 qh->iso_frame, qh->iso_packet_desc);
177 else if (qh->type == USB_ENDPOINT_XFER_INT)
178 out += sprintf(out, "%*s period %d phase %d load %d us\n",
179 space, "", qh->period, qh->phase, qh->load);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 if (element & UHCI_PTR_QH)
182 out += sprintf(out, "%*s Element points to QH (bug?)\n", space, "");
183
184 if (element & UHCI_PTR_DEPTH)
185 out += sprintf(out, "%*s Depth traverse\n", space, "");
186
187 if (element & cpu_to_le32(8))
188 out += sprintf(out, "%*s Bit 3 set (bug?)\n", space, "");
189
190 if (!(element & ~(UHCI_PTR_QH | UHCI_PTR_DEPTH)))
191 out += sprintf(out, "%*s Element is NULL (bug?)\n", space, "");
192
Alan Sterndccf4a42005-12-17 17:58:46 -0500193 if (list_empty(&qh->queue)) {
194 out += sprintf(out, "%*s queue is empty\n", space, "");
Alan Sterne009f1b2007-03-19 15:31:42 -0400195 if (qh == uhci->skel_async_qh)
196 out += uhci_show_td(uhci->term_td, out,
197 len - (out - buf), 0);
Alan Sterndccf4a42005-12-17 17:58:46 -0500198 } else {
199 struct urb_priv *urbp = list_entry(qh->queue.next,
200 struct urb_priv, node);
201 struct uhci_td *td = list_entry(urbp->td_list.next,
202 struct uhci_td, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Alan Stern28b93252007-02-19 15:51:51 -0500204 if (element != LINK_TO_TD(td))
Alan Sterndccf4a42005-12-17 17:58:46 -0500205 out += sprintf(out, "%*s Element != First TD\n",
206 space, "");
207 i = nurbs = 0;
208 list_for_each_entry(urbp, &qh->queue, node) {
209 if (++i <= 10)
210 out += uhci_show_urbp(urbp, out,
211 len - (out - buf), space + 2);
212 else
213 ++nurbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
Alan Sterndccf4a42005-12-17 17:58:46 -0500215 if (nurbs > 0)
216 out += sprintf(out, "%*s Skipped %d URBs\n",
217 space, "", nurbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219
Alan Stern85a975d2007-01-08 12:01:43 -0500220 if (qh->dummy_td) {
Alan Sternaf0bb592005-12-17 18:00:12 -0500221 out += sprintf(out, "%*s Dummy TD\n", space, "");
222 out += uhci_show_td(qh->dummy_td, out, len - (out - buf), 0);
223 }
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return out - buf;
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228static 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
Alan Sternc8f4fe42005-04-09 17:27:32 -0400253static 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 }
Alan Stern84afddd2006-05-12 11:35:45 -0400280 out += sprintf(out, "Root-hub state: %s FSBR: %d\n",
281 rh_state, uhci->fsbr_is_on);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400282 return out - buf;
283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285static int uhci_show_status(struct uhci_hcd *uhci, char *buf, int len)
286{
287 char *out = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 unsigned short usbcmd, usbstat, usbint, usbfrnum;
289 unsigned int flbaseadd;
290 unsigned char sof;
291 unsigned short portsc1, portsc2;
292
293 /* Try to make sure there's enough memory */
Alan Sternc4334722006-05-19 16:34:57 -0400294 if (len < 80 * 9)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return 0;
296
Jan Andersson9faa0912011-05-06 12:00:16 +0200297 usbcmd = uhci_readw(uhci, 0);
298 usbstat = uhci_readw(uhci, 2);
299 usbint = uhci_readw(uhci, 4);
300 usbfrnum = uhci_readw(uhci, 6);
301 flbaseadd = uhci_readl(uhci, 8);
302 sof = uhci_readb(uhci, 12);
303 portsc1 = uhci_readw(uhci, 16);
304 portsc2 = uhci_readw(uhci, 18);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 out += sprintf(out, " usbcmd = %04x %s%s%s%s%s%s%s%s\n",
307 usbcmd,
308 (usbcmd & USBCMD_MAXP) ? "Maxp64 " : "Maxp32 ",
309 (usbcmd & USBCMD_CF) ? "CF " : "",
310 (usbcmd & USBCMD_SWDBG) ? "SWDBG " : "",
311 (usbcmd & USBCMD_FGR) ? "FGR " : "",
312 (usbcmd & USBCMD_EGSM) ? "EGSM " : "",
313 (usbcmd & USBCMD_GRESET) ? "GRESET " : "",
314 (usbcmd & USBCMD_HCRESET) ? "HCRESET " : "",
315 (usbcmd & USBCMD_RS) ? "RS " : "");
316
317 out += sprintf(out, " usbstat = %04x %s%s%s%s%s%s\n",
318 usbstat,
319 (usbstat & USBSTS_HCH) ? "HCHalted " : "",
320 (usbstat & USBSTS_HCPE) ? "HostControllerProcessError " : "",
321 (usbstat & USBSTS_HSE) ? "HostSystemError " : "",
322 (usbstat & USBSTS_RD) ? "ResumeDetect " : "",
323 (usbstat & USBSTS_ERROR) ? "USBError " : "",
324 (usbstat & USBSTS_USBINT) ? "USBINT " : "");
325
326 out += sprintf(out, " usbint = %04x\n", usbint);
327 out += sprintf(out, " usbfrnum = (%d)%03x\n", (usbfrnum >> 10) & 1,
328 0xfff & (4*(unsigned int)usbfrnum));
329 out += sprintf(out, " flbaseadd = %08x\n", flbaseadd);
330 out += sprintf(out, " sof = %02x\n", sof);
331 out += uhci_show_sc(1, portsc1, out, len - (out - buf));
332 out += uhci_show_sc(2, portsc2, out, len - (out - buf));
Alan Sternc8155cc2006-05-19 16:52:35 -0400333 out += sprintf(out, "Most recent frame: %x (%d) "
334 "Last ISO frame: %x (%d)\n",
335 uhci->frame_number, uhci->frame_number & 1023,
336 uhci->last_iso_frame, uhci->last_iso_frame & 1023);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 return out - buf;
339}
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341static int uhci_sprint_schedule(struct uhci_hcd *uhci, char *buf, int len)
342{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 char *out = buf;
344 int i, j;
345 struct uhci_qh *qh;
346 struct uhci_td *td;
347 struct list_head *tmp, *head;
Alan Sternf3fe2392007-01-08 12:00:28 -0500348 int nframes, nerrs;
Alan Stern17230ac2007-02-19 15:52:45 -0500349 __le32 link;
Alan Sterne009f1b2007-03-19 15:31:42 -0400350 __le32 fsbr_link;
Alan Stern17230ac2007-02-19 15:52:45 -0500351
352 static const char * const qh_names[] = {
353 "unlink", "iso", "int128", "int64", "int32", "int16",
354 "int8", "int4", "int2", "async", "term"
355 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Alan Sternc8f4fe42005-04-09 17:27:32 -0400357 out += uhci_show_root_hub_state(uhci, out, len - (out - buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 out += sprintf(out, "HC status\n");
359 out += uhci_show_status(uhci, out, len - (out - buf));
Alan Stern3ca2a322007-01-16 11:56:32 -0500360
361 out += sprintf(out, "Periodic load table\n");
362 for (i = 0; i < MAX_PHASE; ++i) {
363 out += sprintf(out, "\t%d", uhci->load[i]);
364 if (i % 8 == 7)
365 *out++ = '\n';
366 }
367 out += sprintf(out, "Total: %d, #INT: %d, #ISO: %d\n",
368 uhci->total_load,
369 uhci_to_hcd(uhci)->self.bandwidth_int_reqs,
370 uhci_to_hcd(uhci)->self.bandwidth_isoc_reqs);
Alan Sterndccf4a42005-12-17 17:58:46 -0500371 if (debug <= 1)
372 return out - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 out += sprintf(out, "Frame List\n");
Alan Sternf3fe2392007-01-08 12:00:28 -0500375 nframes = 10;
376 nerrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 for (i = 0; i < UHCI_NUMFRAMES; ++i) {
Alan Stern17230ac2007-02-19 15:52:45 -0500378 __le32 qh_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Alan Sternf3fe2392007-01-08 12:00:28 -0500380 j = 0;
381 td = uhci->frame_cpu[i];
382 link = uhci->frame[i];
383 if (!td)
384 goto check_link;
385
386 if (nframes > 0) {
387 out += sprintf(out, "- Frame %d -> (%08x)\n",
388 i, le32_to_cpu(link));
389 j = 1;
390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 head = &td->fl_list;
393 tmp = head;
394 do {
395 td = list_entry(tmp, struct uhci_td, fl_list);
396 tmp = tmp->next;
Alan Stern28b93252007-02-19 15:51:51 -0500397 if (link != LINK_TO_TD(td)) {
Alan Sternf3fe2392007-01-08 12:00:28 -0500398 if (nframes > 0)
399 out += sprintf(out, " link does "
400 "not match list entry!\n");
401 else
402 ++nerrs;
403 }
404 if (nframes > 0)
405 out += uhci_show_td(td, out,
406 len - (out - buf), 4);
407 link = td->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 } while (tmp != head);
Alan Sternf3fe2392007-01-08 12:00:28 -0500409
410check_link:
411 qh_dma = uhci_frame_skel_link(uhci, i);
412 if (link != qh_dma) {
413 if (nframes > 0) {
414 if (!j) {
415 out += sprintf(out,
416 "- Frame %d -> (%08x)\n",
417 i, le32_to_cpu(link));
418 j = 1;
419 }
420 out += sprintf(out, " link does not match "
421 "QH (%08x)!\n", le32_to_cpu(qh_dma));
422 } else
423 ++nerrs;
424 }
425 nframes -= j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
Alan Sternf3fe2392007-01-08 12:00:28 -0500427 if (nerrs > 0)
428 out += sprintf(out, "Skipped %d bad links\n", nerrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Alan Stern687f5f32005-11-30 17:16:19 -0500430 out += sprintf(out, "Skeleton QHs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Alan Sterne009f1b2007-03-19 15:31:42 -0400432 fsbr_link = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 for (i = 0; i < UHCI_NUM_SKELQH; ++i) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500434 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 qh = uhci->skelqh[i];
Alan Stern17230ac2007-02-19 15:52:45 -0500437 out += sprintf(out, "- skel_%s_qh\n", qh_names[i]); \
Alan Sterne009f1b2007-03-19 15:31:42 -0400438 out += uhci_show_qh(uhci, qh, out, len - (out - buf), 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 /* Last QH is the Terminating QH, it's different */
Alan Stern17230ac2007-02-19 15:52:45 -0500441 if (i == SKEL_TERM) {
Alan Stern28b93252007-02-19 15:51:51 -0500442 if (qh_element(qh) != LINK_TO_TD(uhci->term_td))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 out += sprintf(out, " skel_term_qh element is not set to term_td!\n");
Alan Sterne009f1b2007-03-19 15:31:42 -0400444 link = fsbr_link;
445 if (!link)
446 link = LINK_TO_QH(uhci->skel_term_qh);
447 goto check_qh_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449
Alan Sterndccf4a42005-12-17 17:58:46 -0500450 head = &qh->node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 tmp = head->next;
452
453 while (tmp != head) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500454 qh = list_entry(tmp, struct uhci_qh, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 tmp = tmp->next;
Alan Sterndccf4a42005-12-17 17:58:46 -0500456 if (++cnt <= 10)
Alan Sterne009f1b2007-03-19 15:31:42 -0400457 out += uhci_show_qh(uhci, qh, out,
Alan Sterndccf4a42005-12-17 17:58:46 -0500458 len - (out - buf), 4);
Alan Stern17230ac2007-02-19 15:52:45 -0500459 if (!fsbr_link && qh->skel >= SKEL_FSBR)
460 fsbr_link = LINK_TO_QH(qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
Alan Sterndccf4a42005-12-17 17:58:46 -0500462 if ((cnt -= 10) > 0)
463 out += sprintf(out, " Skipped %d QHs\n", cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Alan Stern17230ac2007-02-19 15:52:45 -0500465 link = UHCI_PTR_TERM;
466 if (i <= SKEL_ISO)
467 ;
468 else if (i < SKEL_ASYNC)
469 link = LINK_TO_QH(uhci->skel_async_qh);
470 else if (!uhci->fsbr_is_on)
471 ;
Alan Stern17230ac2007-02-19 15:52:45 -0500472 else
473 link = LINK_TO_QH(uhci->skel_term_qh);
474check_qh_link:
475 if (qh->link != link)
476 out += sprintf(out, " last QH not linked to next skeleton!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return out - buf;
480}
481
Alan Stern8d402e12005-12-17 18:03:37 -0500482#ifdef CONFIG_DEBUG_FS
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484#define MAX_OUTPUT (64 * 1024)
485
486struct uhci_debug {
487 int size;
488 char *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489};
490
491static int uhci_debug_open(struct inode *inode, struct file *file)
492{
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700493 struct uhci_hcd *uhci = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct uhci_debug *up;
Alan Sterndccf4a42005-12-17 17:58:46 -0500495 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 up = kmalloc(sizeof(*up), GFP_KERNEL);
498 if (!up)
Andi Kleen00b81fb2010-06-01 23:04:43 +0200499 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 up->data = kmalloc(MAX_OUTPUT, GFP_KERNEL);
502 if (!up->data) {
503 kfree(up);
Andi Kleen00b81fb2010-06-01 23:04:43 +0200504 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
Alan Stern8d402e12005-12-17 18:03:37 -0500507 up->size = 0;
Alan Sterndccf4a42005-12-17 17:58:46 -0500508 spin_lock_irqsave(&uhci->lock, flags);
Alan Stern8d402e12005-12-17 18:03:37 -0500509 if (uhci->is_initialized)
510 up->size = uhci_sprint_schedule(uhci, up->data, MAX_OUTPUT);
Alan Sterndccf4a42005-12-17 17:58:46 -0500511 spin_unlock_irqrestore(&uhci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 file->private_data = up;
514
Andi Kleen00b81fb2010-06-01 23:04:43 +0200515 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
518static loff_t uhci_debug_lseek(struct file *file, loff_t off, int whence)
519{
520 struct uhci_debug *up;
521 loff_t new = -1;
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 up = file->private_data;
524
Andi Kleen00b81fb2010-06-01 23:04:43 +0200525 /* XXX: atomic 64bit seek access, but that needs to be fixed in the VFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 switch (whence) {
527 case 0:
528 new = off;
529 break;
530 case 1:
531 new = file->f_pos + off;
532 break;
533 }
Andi Kleen00b81fb2010-06-01 23:04:43 +0200534
535 if (new < 0 || new > up->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return -EINVAL;
Andi Kleen00b81fb2010-06-01 23:04:43 +0200537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return (file->f_pos = new);
539}
540
541static ssize_t uhci_debug_read(struct file *file, char __user *buf,
542 size_t nbytes, loff_t *ppos)
543{
544 struct uhci_debug *up = file->private_data;
545 return simple_read_from_buffer(buf, nbytes, ppos, up->data, up->size);
546}
547
548static int uhci_debug_release(struct inode *inode, struct file *file)
549{
550 struct uhci_debug *up = file->private_data;
551
552 kfree(up->data);
553 kfree(up);
554
555 return 0;
556}
557
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300558static const struct file_operations uhci_debug_operations = {
Alan Stern8d402e12005-12-17 18:03:37 -0500559 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 .open = uhci_debug_open,
561 .llseek = uhci_debug_lseek,
562 .read = uhci_debug_read,
563 .release = uhci_debug_release,
564};
Alan Sternb4092142010-08-05 13:12:14 -0400565#define UHCI_DEBUG_OPS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Alan Stern8d402e12005-12-17 18:03:37 -0500567#endif /* CONFIG_DEBUG_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Alan Stern8d402e12005-12-17 18:03:37 -0500569#else /* DEBUG */
570
571static inline void lprintk(char *buf)
572{}
573
Alan Sterne009f1b2007-03-19 15:31:42 -0400574static inline int uhci_show_qh(struct uhci_hcd *uhci,
575 struct uhci_qh *qh, char *buf, int len, int space)
Alan Stern8d402e12005-12-17 18:03:37 -0500576{
577 return 0;
578}
579
580static inline int uhci_sprint_schedule(struct uhci_hcd *uhci,
581 char *buf, int len)
582{
583 return 0;
584}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586#endif