blob: 8e239cdd95d51025c8ca806da08899a420a19e09 [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
Chen Gang13996ca2013-01-23 16:13:41 +080019#define EXTRA_SPACE 1024
20
Alan Stern8d402e12005-12-17 18:03:37 -050021static struct dentry *uhci_debugfs_root;
22
23#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Alan Stern687f5f32005-11-30 17:16:19 -050025/* Handle REALLY large printks so we don't overflow buffers */
Alan Stern8d402e12005-12-17 18:03:37 -050026static void lprintk(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
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
Jan Andersson51e2f622011-05-18 10:44:51 +020042static int uhci_show_td(struct uhci_hcd *uhci, struct uhci_td *td, char *buf,
43 int len, int space)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
45 char *out = buf;
46 char *spid;
47 u32 status, token;
48
Jan Andersson51e2f622011-05-18 10:44:51 +020049 status = td_status(uhci, td);
50 out += sprintf(out, "%*s[%p] link (%08x) ", space, "", td,
51 hc32_to_cpu(uhci, td->link));
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 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);
Chen Gang13996ca2013-01-23 16:13:41 +080065 if (out - buf > len)
66 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
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
Chen Gang13996ca2013-01-23 16:13:41 +080093done:
94 if (out - buf > len)
95 out += sprintf(out, " ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return out - buf;
97}
98
Jan Andersson51e2f622011-05-18 10:44:51 +020099static int uhci_show_urbp(struct uhci_hcd *uhci, struct urb_priv *urbp,
100 char *buf, int len, int space)
Alan Sterndccf4a42005-12-17 17:58:46 -0500101{
102 char *out = buf;
103 struct uhci_td *td;
104 int i, nactive, ninactive;
Alan Stern4de7d2c2006-05-05 16:26:58 -0400105 char *ptype;
Alan Sterndccf4a42005-12-17 17:58:46 -0500106
Alan Sterndccf4a42005-12-17 17:58:46 -0500107
108 out += sprintf(out, "urb_priv [%p] ", urbp);
109 out += sprintf(out, "urb [%p] ", urbp->urb);
110 out += sprintf(out, "qh [%p] ", urbp->qh);
111 out += sprintf(out, "Dev=%d ", usb_pipedevice(urbp->urb->pipe));
112 out += sprintf(out, "EP=%x(%s) ", usb_pipeendpoint(urbp->urb->pipe),
113 (usb_pipein(urbp->urb->pipe) ? "IN" : "OUT"));
Chen Gang13996ca2013-01-23 16:13:41 +0800114 if (out - buf > len)
115 goto done;
Alan Sterndccf4a42005-12-17 17:58:46 -0500116
117 switch (usb_pipetype(urbp->urb->pipe)) {
Alan Stern4de7d2c2006-05-05 16:26:58 -0400118 case PIPE_ISOCHRONOUS: ptype = "ISO"; break;
119 case PIPE_INTERRUPT: ptype = "INT"; break;
120 case PIPE_BULK: ptype = "BLK"; break;
121 default:
122 case PIPE_CONTROL: ptype = "CTL"; break;
Alan Sterndccf4a42005-12-17 17:58:46 -0500123 }
124
Alan Stern4de7d2c2006-05-05 16:26:58 -0400125 out += sprintf(out, "%s%s", ptype, (urbp->fsbr ? " FSBR" : ""));
Alan Stern7ea0a2b2009-03-05 11:01:11 -0500126 out += sprintf(out, " Actlen=%d%s", urbp->urb->actual_length,
127 (urbp->qh->type == USB_ENDPOINT_XFER_CONTROL ?
128 "-8" : ""));
Alan Sterndccf4a42005-12-17 17:58:46 -0500129
Alan Sterneb231052007-08-21 15:40:36 -0400130 if (urbp->urb->unlinked)
131 out += sprintf(out, " Unlinked=%d", urbp->urb->unlinked);
Alan Sterndccf4a42005-12-17 17:58:46 -0500132 out += sprintf(out, "\n");
133
Chen Gang13996ca2013-01-23 16:13:41 +0800134 if (out - buf > len)
135 goto done;
136
Alan Sterndccf4a42005-12-17 17:58:46 -0500137 i = nactive = ninactive = 0;
138 list_for_each_entry(td, &urbp->td_list, list) {
Alan Sternc8155cc2006-05-19 16:52:35 -0400139 if (urbp->qh->type != USB_ENDPOINT_XFER_ISOC &&
140 (++i <= 10 || debug > 2)) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500141 out += sprintf(out, "%*s%d: ", space + 2, "", i);
Jan Andersson51e2f622011-05-18 10:44:51 +0200142 out += uhci_show_td(uhci, td, out,
143 len - (out - buf), 0);
Chen Gang13996ca2013-01-23 16:13:41 +0800144 if (out - buf > len)
145 goto tail;
Alan Sterndccf4a42005-12-17 17:58:46 -0500146 } else {
Jan Andersson51e2f622011-05-18 10:44:51 +0200147 if (td_status(uhci, td) & TD_CTRL_ACTIVE)
Alan Sterndccf4a42005-12-17 17:58:46 -0500148 ++nactive;
149 else
150 ++ninactive;
151 }
152 }
153 if (nactive + ninactive > 0)
Chen Gang3171fca2013-01-24 09:41:45 +0800154 out += sprintf(out,
155 "%*s[skipped %d inactive and %d active TDs]\n",
Alan Sterndccf4a42005-12-17 17:58:46 -0500156 space, "", ninactive, nactive);
Chen Gang13996ca2013-01-23 16:13:41 +0800157done:
158 if (out - buf > len)
159 out += sprintf(out, " ...\n");
160tail:
Alan Sterndccf4a42005-12-17 17:58:46 -0500161 return out - buf;
162}
163
Alan Sterne009f1b2007-03-19 15:31:42 -0400164static int uhci_show_qh(struct uhci_hcd *uhci,
165 struct uhci_qh *qh, char *buf, int len, int space)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 char *out = buf;
Alan Sterndccf4a42005-12-17 17:58:46 -0500168 int i, nurbs;
Jan Andersson51e2f622011-05-18 10:44:51 +0200169 __hc32 element = qh_element(qh);
Alan Stern4de7d2c2006-05-05 16:26:58 -0400170 char *qtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Alan Stern4de7d2c2006-05-05 16:26:58 -0400172 switch (qh->type) {
173 case USB_ENDPOINT_XFER_ISOC: qtype = "ISO"; break;
174 case USB_ENDPOINT_XFER_INT: qtype = "INT"; break;
175 case USB_ENDPOINT_XFER_BULK: qtype = "BLK"; break;
176 case USB_ENDPOINT_XFER_CONTROL: qtype = "CTL"; break;
177 default: qtype = "Skel" ; break;
178 }
179
180 out += sprintf(out, "%*s[%p] %s QH link (%08x) element (%08x)\n",
181 space, "", qh, qtype,
Jan Andersson51e2f622011-05-18 10:44:51 +0200182 hc32_to_cpu(uhci, qh->link),
183 hc32_to_cpu(uhci, element));
Alan Sterncaf38272006-05-19 16:44:55 -0400184 if (qh->type == USB_ENDPOINT_XFER_ISOC)
Chen Gang3171fca2013-01-24 09:41:45 +0800185 out += sprintf(out,
186 "%*s period %d phase %d load %d us, frame %x desc [%p]\n",
Alan Stern3ca2a322007-01-16 11:56:32 -0500187 space, "", qh->period, qh->phase, qh->load,
188 qh->iso_frame, qh->iso_packet_desc);
189 else if (qh->type == USB_ENDPOINT_XFER_INT)
190 out += sprintf(out, "%*s period %d phase %d load %d us\n",
191 space, "", qh->period, qh->phase, qh->load);
Chen Gang13996ca2013-01-23 16:13:41 +0800192 if (out - buf > len)
193 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Jan Andersson51e2f622011-05-18 10:44:51 +0200195 if (element & UHCI_PTR_QH(uhci))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 out += sprintf(out, "%*s Element points to QH (bug?)\n", space, "");
197
Jan Andersson51e2f622011-05-18 10:44:51 +0200198 if (element & UHCI_PTR_DEPTH(uhci))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 out += sprintf(out, "%*s Depth traverse\n", space, "");
200
Jan Andersson51e2f622011-05-18 10:44:51 +0200201 if (element & cpu_to_hc32(uhci, 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 out += sprintf(out, "%*s Bit 3 set (bug?)\n", space, "");
203
Jan Andersson51e2f622011-05-18 10:44:51 +0200204 if (!(element & ~(UHCI_PTR_QH(uhci) | UHCI_PTR_DEPTH(uhci))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 out += sprintf(out, "%*s Element is NULL (bug?)\n", space, "");
206
Chen Gang13996ca2013-01-23 16:13:41 +0800207 if (out - buf > len)
208 goto done;
209
Alan Sterndccf4a42005-12-17 17:58:46 -0500210 if (list_empty(&qh->queue)) {
211 out += sprintf(out, "%*s queue is empty\n", space, "");
Chen Gang13996ca2013-01-23 16:13:41 +0800212 if (qh == uhci->skel_async_qh) {
Jan Andersson51e2f622011-05-18 10:44:51 +0200213 out += uhci_show_td(uhci, uhci->term_td, out,
Alan Sterne009f1b2007-03-19 15:31:42 -0400214 len - (out - buf), 0);
Chen Gang13996ca2013-01-23 16:13:41 +0800215 if (out - buf > len)
216 goto tail;
217 }
Alan Sterndccf4a42005-12-17 17:58:46 -0500218 } else {
219 struct urb_priv *urbp = list_entry(qh->queue.next,
220 struct urb_priv, node);
221 struct uhci_td *td = list_entry(urbp->td_list.next,
222 struct uhci_td, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Jan Andersson51e2f622011-05-18 10:44:51 +0200224 if (element != LINK_TO_TD(uhci, td))
Alan Sterndccf4a42005-12-17 17:58:46 -0500225 out += sprintf(out, "%*s Element != First TD\n",
226 space, "");
227 i = nurbs = 0;
228 list_for_each_entry(urbp, &qh->queue, node) {
Chen Gang13996ca2013-01-23 16:13:41 +0800229 if (++i <= 10) {
Jan Andersson51e2f622011-05-18 10:44:51 +0200230 out += uhci_show_urbp(uhci, urbp, out,
Alan Sterndccf4a42005-12-17 17:58:46 -0500231 len - (out - buf), space + 2);
Chen Gang13996ca2013-01-23 16:13:41 +0800232 if (out - buf > len)
233 goto tail;
234 }
Alan Sterndccf4a42005-12-17 17:58:46 -0500235 else
236 ++nurbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
Alan Sterndccf4a42005-12-17 17:58:46 -0500238 if (nurbs > 0)
239 out += sprintf(out, "%*s Skipped %d URBs\n",
240 space, "", nurbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
Chen Gang13996ca2013-01-23 16:13:41 +0800243 if (out - buf > len)
244 goto done;
245
Alan Stern85a975d2007-01-08 12:01:43 -0500246 if (qh->dummy_td) {
Alan Sternaf0bb592005-12-17 18:00:12 -0500247 out += sprintf(out, "%*s Dummy TD\n", space, "");
Jan Andersson51e2f622011-05-18 10:44:51 +0200248 out += uhci_show_td(uhci, qh->dummy_td, out,
249 len - (out - buf), 0);
Chen Gang13996ca2013-01-23 16:13:41 +0800250 if (out - buf > len)
251 goto tail;
Alan Sternaf0bb592005-12-17 18:00:12 -0500252 }
253
Chen Gang13996ca2013-01-23 16:13:41 +0800254done:
255 if (out - buf > len)
256 out += sprintf(out, " ...\n");
257tail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return out - buf;
259}
260
Chen Gang13996ca2013-01-23 16:13:41 +0800261static int uhci_show_sc(int port, unsigned short status, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Chen Gang13996ca2013-01-23 16:13:41 +0800263 return sprintf(buf, " stat%d = %04x %s%s%s%s%s%s%s%s%s%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 port,
265 status,
266 (status & USBPORTSC_SUSP) ? " Suspend" : "",
267 (status & USBPORTSC_OCC) ? " OverCurrentChange" : "",
268 (status & USBPORTSC_OC) ? " OverCurrent" : "",
269 (status & USBPORTSC_PR) ? " Reset" : "",
270 (status & USBPORTSC_LSDA) ? " LowSpeed" : "",
271 (status & USBPORTSC_RD) ? " ResumeDetect" : "",
272 (status & USBPORTSC_PEC) ? " EnableChange" : "",
273 (status & USBPORTSC_PE) ? " Enabled" : "",
274 (status & USBPORTSC_CSC) ? " ConnectChange" : "",
275 (status & USBPORTSC_CCS) ? " Connected" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Chen Gang13996ca2013-01-23 16:13:41 +0800278static int uhci_show_root_hub_state(struct uhci_hcd *uhci, char *buf)
Alan Sternc8f4fe42005-04-09 17:27:32 -0400279{
Alan Sternc8f4fe42005-04-09 17:27:32 -0400280 char *rh_state;
281
Alan Sternc8f4fe42005-04-09 17:27:32 -0400282 switch (uhci->rh_state) {
283 case UHCI_RH_RESET:
284 rh_state = "reset"; break;
285 case UHCI_RH_SUSPENDED:
286 rh_state = "suspended"; break;
287 case UHCI_RH_AUTO_STOPPED:
288 rh_state = "auto-stopped"; break;
289 case UHCI_RH_RESUMING:
290 rh_state = "resuming"; break;
291 case UHCI_RH_SUSPENDING:
292 rh_state = "suspending"; break;
293 case UHCI_RH_RUNNING:
294 rh_state = "running"; break;
295 case UHCI_RH_RUNNING_NODEVS:
296 rh_state = "running, no devs"; break;
297 default:
298 rh_state = "?"; break;
299 }
Chen Gang13996ca2013-01-23 16:13:41 +0800300 return sprintf(buf, "Root-hub state: %s FSBR: %d\n",
Alan Stern84afddd2006-05-12 11:35:45 -0400301 rh_state, uhci->fsbr_is_on);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304static int uhci_show_status(struct uhci_hcd *uhci, char *buf, int len)
305{
306 char *out = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 unsigned short usbcmd, usbstat, usbint, usbfrnum;
308 unsigned int flbaseadd;
309 unsigned char sof;
310 unsigned short portsc1, portsc2;
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Deng-Cheng Zhuf1125f82013-10-04 15:14:34 -0700313 usbcmd = uhci_readw(uhci, USBCMD);
314 usbstat = uhci_readw(uhci, USBSTS);
315 usbint = uhci_readw(uhci, USBINTR);
316 usbfrnum = uhci_readw(uhci, USBFRNUM);
317 flbaseadd = uhci_readl(uhci, USBFLBASEADD);
318 sof = uhci_readb(uhci, USBSOF);
319 portsc1 = uhci_readw(uhci, USBPORTSC1);
320 portsc2 = uhci_readw(uhci, USBPORTSC2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 out += sprintf(out, " usbcmd = %04x %s%s%s%s%s%s%s%s\n",
323 usbcmd,
324 (usbcmd & USBCMD_MAXP) ? "Maxp64 " : "Maxp32 ",
325 (usbcmd & USBCMD_CF) ? "CF " : "",
326 (usbcmd & USBCMD_SWDBG) ? "SWDBG " : "",
327 (usbcmd & USBCMD_FGR) ? "FGR " : "",
328 (usbcmd & USBCMD_EGSM) ? "EGSM " : "",
329 (usbcmd & USBCMD_GRESET) ? "GRESET " : "",
330 (usbcmd & USBCMD_HCRESET) ? "HCRESET " : "",
331 (usbcmd & USBCMD_RS) ? "RS " : "");
Chen Gang13996ca2013-01-23 16:13:41 +0800332 if (out - buf > len)
333 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 out += sprintf(out, " usbstat = %04x %s%s%s%s%s%s\n",
336 usbstat,
337 (usbstat & USBSTS_HCH) ? "HCHalted " : "",
338 (usbstat & USBSTS_HCPE) ? "HostControllerProcessError " : "",
339 (usbstat & USBSTS_HSE) ? "HostSystemError " : "",
340 (usbstat & USBSTS_RD) ? "ResumeDetect " : "",
341 (usbstat & USBSTS_ERROR) ? "USBError " : "",
342 (usbstat & USBSTS_USBINT) ? "USBINT " : "");
Chen Gang13996ca2013-01-23 16:13:41 +0800343 if (out - buf > len)
344 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 out += sprintf(out, " usbint = %04x\n", usbint);
347 out += sprintf(out, " usbfrnum = (%d)%03x\n", (usbfrnum >> 10) & 1,
348 0xfff & (4*(unsigned int)usbfrnum));
349 out += sprintf(out, " flbaseadd = %08x\n", flbaseadd);
350 out += sprintf(out, " sof = %02x\n", sof);
Chen Gang13996ca2013-01-23 16:13:41 +0800351 if (out - buf > len)
352 goto done;
353
354 out += uhci_show_sc(1, portsc1, out);
355 if (out - buf > len)
356 goto done;
357
358 out += uhci_show_sc(2, portsc2, out);
359 if (out - buf > len)
360 goto done;
361
362 out += sprintf(out,
363 "Most recent frame: %x (%d) Last ISO frame: %x (%d)\n",
Alan Sternc8155cc2006-05-19 16:52:35 -0400364 uhci->frame_number, uhci->frame_number & 1023,
365 uhci->last_iso_frame, uhci->last_iso_frame & 1023);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Chen Gang13996ca2013-01-23 16:13:41 +0800367done:
368 if (out - buf > len)
369 out += sprintf(out, " ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return out - buf;
371}
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373static int uhci_sprint_schedule(struct uhci_hcd *uhci, char *buf, int len)
374{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 char *out = buf;
376 int i, j;
377 struct uhci_qh *qh;
378 struct uhci_td *td;
379 struct list_head *tmp, *head;
Alan Sternf3fe2392007-01-08 12:00:28 -0500380 int nframes, nerrs;
Jan Andersson51e2f622011-05-18 10:44:51 +0200381 __hc32 link;
382 __hc32 fsbr_link;
Alan Stern17230ac2007-02-19 15:52:45 -0500383
384 static const char * const qh_names[] = {
385 "unlink", "iso", "int128", "int64", "int32", "int16",
386 "int8", "int4", "int2", "async", "term"
387 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Chen Gang13996ca2013-01-23 16:13:41 +0800389 out += uhci_show_root_hub_state(uhci, out);
390 if (out - buf > len)
391 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 out += sprintf(out, "HC status\n");
393 out += uhci_show_status(uhci, out, len - (out - buf));
Chen Gang13996ca2013-01-23 16:13:41 +0800394 if (out - buf > len)
395 goto tail;
Alan Stern3ca2a322007-01-16 11:56:32 -0500396
397 out += sprintf(out, "Periodic load table\n");
398 for (i = 0; i < MAX_PHASE; ++i) {
399 out += sprintf(out, "\t%d", uhci->load[i]);
400 if (i % 8 == 7)
401 *out++ = '\n';
402 }
403 out += sprintf(out, "Total: %d, #INT: %d, #ISO: %d\n",
404 uhci->total_load,
405 uhci_to_hcd(uhci)->self.bandwidth_int_reqs,
406 uhci_to_hcd(uhci)->self.bandwidth_isoc_reqs);
Alan Sterndccf4a42005-12-17 17:58:46 -0500407 if (debug <= 1)
Chen Gang13996ca2013-01-23 16:13:41 +0800408 goto tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 out += sprintf(out, "Frame List\n");
Alan Sternf3fe2392007-01-08 12:00:28 -0500411 nframes = 10;
412 nerrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 for (i = 0; i < UHCI_NUMFRAMES; ++i) {
Jan Andersson51e2f622011-05-18 10:44:51 +0200414 __hc32 qh_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Chen Gang13996ca2013-01-23 16:13:41 +0800416 if (out - buf > len)
417 goto done;
Alan Sternf3fe2392007-01-08 12:00:28 -0500418 j = 0;
419 td = uhci->frame_cpu[i];
420 link = uhci->frame[i];
421 if (!td)
422 goto check_link;
423
424 if (nframes > 0) {
425 out += sprintf(out, "- Frame %d -> (%08x)\n",
Jan Andersson51e2f622011-05-18 10:44:51 +0200426 i, hc32_to_cpu(uhci, link));
Alan Sternf3fe2392007-01-08 12:00:28 -0500427 j = 1;
428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 head = &td->fl_list;
431 tmp = head;
432 do {
433 td = list_entry(tmp, struct uhci_td, fl_list);
434 tmp = tmp->next;
Jan Andersson51e2f622011-05-18 10:44:51 +0200435 if (link != LINK_TO_TD(uhci, td)) {
Chen Gang13996ca2013-01-23 16:13:41 +0800436 if (nframes > 0) {
Chen Gang3171fca2013-01-24 09:41:45 +0800437 out += sprintf(out,
438 " link does not match list entry!\n");
Chen Gang13996ca2013-01-23 16:13:41 +0800439 if (out - buf > len)
440 goto done;
441 } else
Alan Sternf3fe2392007-01-08 12:00:28 -0500442 ++nerrs;
443 }
Chen Gang13996ca2013-01-23 16:13:41 +0800444 if (nframes > 0) {
Jan Andersson51e2f622011-05-18 10:44:51 +0200445 out += uhci_show_td(uhci, td, out,
Alan Sternf3fe2392007-01-08 12:00:28 -0500446 len - (out - buf), 4);
Chen Gang13996ca2013-01-23 16:13:41 +0800447 if (out - buf > len)
448 goto tail;
449 }
Alan Sternf3fe2392007-01-08 12:00:28 -0500450 link = td->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 } while (tmp != head);
Alan Sternf3fe2392007-01-08 12:00:28 -0500452
453check_link:
454 qh_dma = uhci_frame_skel_link(uhci, i);
455 if (link != qh_dma) {
456 if (nframes > 0) {
457 if (!j) {
458 out += sprintf(out,
459 "- Frame %d -> (%08x)\n",
Jan Andersson51e2f622011-05-18 10:44:51 +0200460 i, hc32_to_cpu(uhci, link));
Alan Sternf3fe2392007-01-08 12:00:28 -0500461 j = 1;
462 }
Chen Gang3171fca2013-01-24 09:41:45 +0800463 out += sprintf(out,
464 " link does not match QH (%08x)!\n",
Jan Andersson51e2f622011-05-18 10:44:51 +0200465 hc32_to_cpu(uhci, qh_dma));
Chen Gang13996ca2013-01-23 16:13:41 +0800466 if (out - buf > len)
467 goto done;
Alan Sternf3fe2392007-01-08 12:00:28 -0500468 } else
469 ++nerrs;
470 }
471 nframes -= j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Alan Sternf3fe2392007-01-08 12:00:28 -0500473 if (nerrs > 0)
474 out += sprintf(out, "Skipped %d bad links\n", nerrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Alan Stern687f5f32005-11-30 17:16:19 -0500476 out += sprintf(out, "Skeleton QHs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Chen Gang13996ca2013-01-23 16:13:41 +0800478 if (out - buf > len)
479 goto done;
480
Alan Sterne009f1b2007-03-19 15:31:42 -0400481 fsbr_link = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 for (i = 0; i < UHCI_NUM_SKELQH; ++i) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500483 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 qh = uhci->skelqh[i];
Chen Gang3171fca2013-01-24 09:41:45 +0800486 out += sprintf(out, "- skel_%s_qh\n", qh_names[i]);
Alan Sterne009f1b2007-03-19 15:31:42 -0400487 out += uhci_show_qh(uhci, qh, out, len - (out - buf), 4);
Chen Gang13996ca2013-01-23 16:13:41 +0800488 if (out - buf > len)
489 goto tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 /* Last QH is the Terminating QH, it's different */
Alan Stern17230ac2007-02-19 15:52:45 -0500492 if (i == SKEL_TERM) {
Chen Gang13996ca2013-01-23 16:13:41 +0800493 if (qh_element(qh) != LINK_TO_TD(uhci, uhci->term_td)) {
Chen Gang3171fca2013-01-24 09:41:45 +0800494 out += sprintf(out,
495 " skel_term_qh element is not set to term_td!\n");
Chen Gang13996ca2013-01-23 16:13:41 +0800496 if (out - buf > len)
497 goto done;
498 }
Alan Sterne009f1b2007-03-19 15:31:42 -0400499 link = fsbr_link;
500 if (!link)
Jan Andersson51e2f622011-05-18 10:44:51 +0200501 link = LINK_TO_QH(uhci, uhci->skel_term_qh);
Alan Sterne009f1b2007-03-19 15:31:42 -0400502 goto check_qh_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504
Alan Sterndccf4a42005-12-17 17:58:46 -0500505 head = &qh->node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 tmp = head->next;
507
508 while (tmp != head) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500509 qh = list_entry(tmp, struct uhci_qh, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 tmp = tmp->next;
Chen Gang13996ca2013-01-23 16:13:41 +0800511 if (++cnt <= 10) {
Alan Sterne009f1b2007-03-19 15:31:42 -0400512 out += uhci_show_qh(uhci, qh, out,
Alan Sterndccf4a42005-12-17 17:58:46 -0500513 len - (out - buf), 4);
Chen Gang13996ca2013-01-23 16:13:41 +0800514 if (out - buf > len)
515 goto tail;
516 }
Alan Stern17230ac2007-02-19 15:52:45 -0500517 if (!fsbr_link && qh->skel >= SKEL_FSBR)
Jan Andersson51e2f622011-05-18 10:44:51 +0200518 fsbr_link = LINK_TO_QH(uhci, qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
Alan Sterndccf4a42005-12-17 17:58:46 -0500520 if ((cnt -= 10) > 0)
521 out += sprintf(out, " Skipped %d QHs\n", cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Jan Andersson51e2f622011-05-18 10:44:51 +0200523 link = UHCI_PTR_TERM(uhci);
Alan Stern17230ac2007-02-19 15:52:45 -0500524 if (i <= SKEL_ISO)
525 ;
526 else if (i < SKEL_ASYNC)
Jan Andersson51e2f622011-05-18 10:44:51 +0200527 link = LINK_TO_QH(uhci, uhci->skel_async_qh);
Alan Stern17230ac2007-02-19 15:52:45 -0500528 else if (!uhci->fsbr_is_on)
529 ;
Alan Stern17230ac2007-02-19 15:52:45 -0500530 else
Jan Andersson51e2f622011-05-18 10:44:51 +0200531 link = LINK_TO_QH(uhci, uhci->skel_term_qh);
Alan Stern17230ac2007-02-19 15:52:45 -0500532check_qh_link:
533 if (qh->link != link)
Chen Gang3171fca2013-01-24 09:41:45 +0800534 out += sprintf(out,
535 " last QH not linked to next skeleton!\n");
Chen Gang13996ca2013-01-23 16:13:41 +0800536
537 if (out - buf > len)
538 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540
Chen Gang13996ca2013-01-23 16:13:41 +0800541done:
542 if (out - buf > len)
543 out += sprintf(out, " ...\n");
544tail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return out - buf;
546}
547
Alan Stern8d402e12005-12-17 18:03:37 -0500548#ifdef CONFIG_DEBUG_FS
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550#define MAX_OUTPUT (64 * 1024)
551
552struct uhci_debug {
553 int size;
554 char *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555};
556
557static int uhci_debug_open(struct inode *inode, struct file *file)
558{
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700559 struct uhci_hcd *uhci = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 struct uhci_debug *up;
Alan Sterndccf4a42005-12-17 17:58:46 -0500561 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 up = kmalloc(sizeof(*up), GFP_KERNEL);
564 if (!up)
Andi Kleen00b81fb2010-06-01 23:04:43 +0200565 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 up->data = kmalloc(MAX_OUTPUT, GFP_KERNEL);
568 if (!up->data) {
569 kfree(up);
Andi Kleen00b81fb2010-06-01 23:04:43 +0200570 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
572
Alan Stern8d402e12005-12-17 18:03:37 -0500573 up->size = 0;
Alan Sterndccf4a42005-12-17 17:58:46 -0500574 spin_lock_irqsave(&uhci->lock, flags);
Alan Stern8d402e12005-12-17 18:03:37 -0500575 if (uhci->is_initialized)
Chen Gang13996ca2013-01-23 16:13:41 +0800576 up->size = uhci_sprint_schedule(uhci, up->data,
577 MAX_OUTPUT - EXTRA_SPACE);
Alan Sterndccf4a42005-12-17 17:58:46 -0500578 spin_unlock_irqrestore(&uhci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 file->private_data = up;
581
Andi Kleen00b81fb2010-06-01 23:04:43 +0200582 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
585static loff_t uhci_debug_lseek(struct file *file, loff_t off, int whence)
586{
587 struct uhci_debug *up;
588 loff_t new = -1;
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 up = file->private_data;
591
Chen Gang3171fca2013-01-24 09:41:45 +0800592 /*
593 * XXX: atomic 64bit seek access, but that needs to be fixed in the VFS
594 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 switch (whence) {
596 case 0:
597 new = off;
598 break;
599 case 1:
600 new = file->f_pos + off;
601 break;
602 }
Andi Kleen00b81fb2010-06-01 23:04:43 +0200603
604 if (new < 0 || new > up->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return -EINVAL;
Andi Kleen00b81fb2010-06-01 23:04:43 +0200606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return (file->f_pos = new);
608}
609
610static ssize_t uhci_debug_read(struct file *file, char __user *buf,
611 size_t nbytes, loff_t *ppos)
612{
613 struct uhci_debug *up = file->private_data;
614 return simple_read_from_buffer(buf, nbytes, ppos, up->data, up->size);
615}
616
617static int uhci_debug_release(struct inode *inode, struct file *file)
618{
619 struct uhci_debug *up = file->private_data;
620
621 kfree(up->data);
622 kfree(up);
623
624 return 0;
625}
626
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300627static const struct file_operations uhci_debug_operations = {
Alan Stern8d402e12005-12-17 18:03:37 -0500628 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 .open = uhci_debug_open,
630 .llseek = uhci_debug_lseek,
631 .read = uhci_debug_read,
632 .release = uhci_debug_release,
633};
Alan Sternb4092142010-08-05 13:12:14 -0400634#define UHCI_DEBUG_OPS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Alan Stern8d402e12005-12-17 18:03:37 -0500636#endif /* CONFIG_DEBUG_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Alan Stern8d402e12005-12-17 18:03:37 -0500638#else /* DEBUG */
639
640static inline void lprintk(char *buf)
641{}
642
Alan Sterne009f1b2007-03-19 15:31:42 -0400643static inline int uhci_show_qh(struct uhci_hcd *uhci,
644 struct uhci_qh *qh, char *buf, int len, int space)
Alan Stern8d402e12005-12-17 18:03:37 -0500645{
646 return 0;
647}
648
649static inline int uhci_sprint_schedule(struct uhci_hcd *uhci,
650 char *buf, int len)
651{
652 return 0;
653}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655#endif