blob: 37dac751bac50b834f591ace92db79d8a4d11171 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2001-2002 by David Brownell
David Brownell53bd6a62006-08-30 14:50:06 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * for more details.
13 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
16/* this file is part of ehci-hcd.c */
17
Oliver Neukum1c201632013-11-18 13:23:16 +010018#ifdef CONFIG_DYNAMIC_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Geyslan G. Bem0784b4d2016-01-25 22:44:55 -030020/*
21 * check the values in the HCSPARAMS register
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * (host controller _Structural_ parameters)
23 * see EHCI spec, Table 2-4 for each value
24 */
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -030025static void dbg_hcs_params(struct ehci_hcd *ehci, char *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026{
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +110027 u32 params = ehci_readl(ehci, &ehci->caps->hcs_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -030029 ehci_dbg(ehci,
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 "%s hcs_params 0x%x dbg=%d%s cc=%d pcc=%d%s%s ports=%d\n",
31 label, params,
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -030032 HCS_DEBUG_PORT(params),
33 HCS_INDICATOR(params) ? " ind" : "",
34 HCS_N_CC(params),
35 HCS_N_PCC(params),
36 HCS_PORTROUTED(params) ? "" : " ordered",
37 HCS_PPC(params) ? "" : " !ppc",
Geyslan G. Bem78698d62016-01-25 22:44:57 -030038 HCS_N_PORTS(params));
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 /* Port routing, per EHCI 0.95 Spec, Section 2.2.5 */
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -030040 if (HCS_PORTROUTED(params)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 int i;
Geyslan G. Bem1cb1d1c2016-01-25 22:44:54 -030042 char buf[46], tmp[7], byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44 buf[0] = 0;
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -030045 for (i = 0; i < HCS_N_PORTS(params); i++) {
Geyslan G. Bem0784b4d2016-01-25 22:44:55 -030046 /* FIXME MIPS won't readb() ... */
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -030047 byte = readb(&ehci->caps->portroute[(i >> 1)]);
David Brownell53bd6a62006-08-30 14:50:06 -070048 sprintf(tmp, "%d ",
Geyslan G. Bemc2fb0172016-01-25 22:44:58 -030049 (i & 0x1) ? byte & 0xf : (byte >> 4) & 0xf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 strcat(buf, tmp);
51 }
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -030052 ehci_dbg(ehci, "%s portroute %s\n", label, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 }
54}
55#else
56
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -030057static inline void dbg_hcs_params(struct ehci_hcd *ehci, char *label) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#endif
60
Oliver Neukum1c201632013-11-18 13:23:16 +010061#ifdef CONFIG_DYNAMIC_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Geyslan G. Bem0784b4d2016-01-25 22:44:55 -030063/*
64 * check the values in the HCCPARAMS register
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 * (host controller _Capability_ parameters)
66 * see EHCI Spec, Table 2-5 for each value
Geyslan G. Bem0784b4d2016-01-25 22:44:55 -030067 */
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -030068static void dbg_hcc_params(struct ehci_hcd *ehci, char *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +110070 u32 params = ehci_readl(ehci, &ehci->caps->hcc_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -030072 if (HCC_ISOC_CACHE(params)) {
73 ehci_dbg(ehci,
Stefan Roese6dbd6822007-05-01 09:29:37 -070074 "%s hcc_params %04x caching frame %s%s%s\n",
75 label, params,
76 HCC_PGM_FRAMELISTLEN(params) ? "256/512/1024" : "1024",
77 HCC_CANPARK(params) ? " park" : "",
78 HCC_64BIT_ADDR(params) ? " 64 bit addr" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 } else {
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -030080 ehci_dbg(ehci,
Alek Duaa4d8342010-06-04 15:47:54 +080081 "%s hcc_params %04x thresh %d uframes %s%s%s%s%s%s%s\n",
Stefan Roese6dbd6822007-05-01 09:29:37 -070082 label,
83 params,
84 HCC_ISOC_THRES(params),
85 HCC_PGM_FRAMELISTLEN(params) ? "256/512/1024" : "1024",
86 HCC_CANPARK(params) ? " park" : "",
Alek Duaa4d8342010-06-04 15:47:54 +080087 HCC_64BIT_ADDR(params) ? " 64 bit addr" : "",
88 HCC_LPM(params) ? " LPM" : "",
89 HCC_PER_PORT_CHANGE_EVENT(params) ? " ppce" : "",
90 HCC_HW_PREFETCH(params) ? " hw prefetch" : "",
91 HCC_32FRAME_PERIODIC_LIST(params) ?
Masanari Iida855ef452012-02-17 23:06:47 +090092 " 32 periodic list" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 }
94}
95#else
96
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -030097static inline void dbg_hcc_params(struct ehci_hcd *ehci, char *label) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#endif
100
Oliver Neukum1c201632013-11-18 13:23:16 +0100101#ifdef CONFIG_DYNAMIC_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
David Rientjes82345092007-05-11 14:39:44 -0700103static void __maybe_unused
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300104dbg_qtd(const char *label, struct ehci_hcd *ehci, struct ehci_qtd *qtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Stefan Roese6dbd6822007-05-01 09:29:37 -0700106 ehci_dbg(ehci, "%s td %p n%08x %08x t%08x p0=%08x\n", label, qtd,
107 hc32_to_cpup(ehci, &qtd->hw_next),
108 hc32_to_cpup(ehci, &qtd->hw_alt_next),
109 hc32_to_cpup(ehci, &qtd->hw_token),
Geyslan G. Bem1cb1d1c2016-01-25 22:44:54 -0300110 hc32_to_cpup(ehci, &qtd->hw_buf[0]));
111 if (qtd->hw_buf[1])
Stefan Roese6dbd6822007-05-01 09:29:37 -0700112 ehci_dbg(ehci, " p1=%08x p2=%08x p3=%08x p4=%08x\n",
113 hc32_to_cpup(ehci, &qtd->hw_buf[1]),
114 hc32_to_cpup(ehci, &qtd->hw_buf[2]),
115 hc32_to_cpup(ehci, &qtd->hw_buf[3]),
116 hc32_to_cpup(ehci, &qtd->hw_buf[4]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
David Rientjes82345092007-05-11 14:39:44 -0700119static void __maybe_unused
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300120dbg_qh(const char *label, struct ehci_hcd *ehci, struct ehci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Alek Du3807e262009-07-14 07:23:29 +0800122 struct ehci_qh_hw *hw = qh->hw;
123
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300124 ehci_dbg(ehci, "%s qh %p n%08x info %x %x qtd %x\n", label,
Alek Du3807e262009-07-14 07:23:29 +0800125 qh, hw->hw_next, hw->hw_info1, hw->hw_info2, hw->hw_current);
126 dbg_qtd("overlay", ehci, (struct ehci_qtd *) &hw->hw_qtd_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
David Rientjes82345092007-05-11 14:39:44 -0700129static void __maybe_unused
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300130dbg_itd(const char *label, struct ehci_hcd *ehci, struct ehci_itd *itd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300132 ehci_dbg(ehci, "%s [%d] itd %p, next %08x, urb %p\n",
Stefan Roese6dbd6822007-05-01 09:29:37 -0700133 label, itd->frame, itd, hc32_to_cpu(ehci, itd->hw_next),
134 itd->urb);
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300135 ehci_dbg(ehci,
David Brownell53bd6a62006-08-30 14:50:06 -0700136 " trans: %08x %08x %08x %08x %08x %08x %08x %08x\n",
Stefan Roese6dbd6822007-05-01 09:29:37 -0700137 hc32_to_cpu(ehci, itd->hw_transaction[0]),
138 hc32_to_cpu(ehci, itd->hw_transaction[1]),
139 hc32_to_cpu(ehci, itd->hw_transaction[2]),
140 hc32_to_cpu(ehci, itd->hw_transaction[3]),
141 hc32_to_cpu(ehci, itd->hw_transaction[4]),
142 hc32_to_cpu(ehci, itd->hw_transaction[5]),
143 hc32_to_cpu(ehci, itd->hw_transaction[6]),
144 hc32_to_cpu(ehci, itd->hw_transaction[7]));
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300145 ehci_dbg(ehci,
David Brownell53bd6a62006-08-30 14:50:06 -0700146 " buf: %08x %08x %08x %08x %08x %08x %08x\n",
Stefan Roese6dbd6822007-05-01 09:29:37 -0700147 hc32_to_cpu(ehci, itd->hw_bufp[0]),
148 hc32_to_cpu(ehci, itd->hw_bufp[1]),
149 hc32_to_cpu(ehci, itd->hw_bufp[2]),
150 hc32_to_cpu(ehci, itd->hw_bufp[3]),
151 hc32_to_cpu(ehci, itd->hw_bufp[4]),
152 hc32_to_cpu(ehci, itd->hw_bufp[5]),
153 hc32_to_cpu(ehci, itd->hw_bufp[6]));
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300154 ehci_dbg(ehci, " index: %d %d %d %d %d %d %d %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 itd->index[0], itd->index[1], itd->index[2],
156 itd->index[3], itd->index[4], itd->index[5],
157 itd->index[6], itd->index[7]);
158}
159
David Rientjes82345092007-05-11 14:39:44 -0700160static void __maybe_unused
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300161dbg_sitd(const char *label, struct ehci_hcd *ehci, struct ehci_sitd *sitd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300163 ehci_dbg(ehci, "%s [%d] sitd %p, next %08x, urb %p\n",
Stefan Roese6dbd6822007-05-01 09:29:37 -0700164 label, sitd->frame, sitd, hc32_to_cpu(ehci, sitd->hw_next),
165 sitd->urb);
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300166 ehci_dbg(ehci,
David Brownell53bd6a62006-08-30 14:50:06 -0700167 " addr %08x sched %04x result %08x buf %08x %08x\n",
Stefan Roese6dbd6822007-05-01 09:29:37 -0700168 hc32_to_cpu(ehci, sitd->hw_fullspeed_ep),
169 hc32_to_cpu(ehci, sitd->hw_uframe),
170 hc32_to_cpu(ehci, sitd->hw_results),
171 hc32_to_cpu(ehci, sitd->hw_buf[0]),
172 hc32_to_cpu(ehci, sitd->hw_buf[1]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
David Rientjes82345092007-05-11 14:39:44 -0700175static int __maybe_unused
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300176dbg_status_buf(char *buf, unsigned len, const char *label, u32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300178 return scnprintf(buf, len,
Alek Duaa4d8342010-06-04 15:47:54 +0800179 "%s%sstatus %04x%s%s%s%s%s%s%s%s%s%s%s",
Geyslan G. Bem1cb1d1c2016-01-25 22:44:54 -0300180 label, label[0] ? " " : "", status,
Alek Duaa4d8342010-06-04 15:47:54 +0800181 (status & STS_PPCE_MASK) ? " PPCE" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 (status & STS_ASS) ? " Async" : "",
183 (status & STS_PSS) ? " Periodic" : "",
184 (status & STS_RECL) ? " Recl" : "",
185 (status & STS_HALT) ? " Halt" : "",
186 (status & STS_IAA) ? " IAA" : "",
187 (status & STS_FATAL) ? " FATAL" : "",
188 (status & STS_FLR) ? " FLR" : "",
189 (status & STS_PCD) ? " PCD" : "",
190 (status & STS_ERR) ? " ERR" : "",
Geyslan G. Bem78698d62016-01-25 22:44:57 -0300191 (status & STS_INT) ? " INT" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
David Rientjes82345092007-05-11 14:39:44 -0700194static int __maybe_unused
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300195dbg_intr_buf(char *buf, unsigned len, const char *label, u32 enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300197 return scnprintf(buf, len,
Alek Duaa4d8342010-06-04 15:47:54 +0800198 "%s%sintrenable %02x%s%s%s%s%s%s%s",
Geyslan G. Bem1cb1d1c2016-01-25 22:44:54 -0300199 label, label[0] ? " " : "", enable,
Alek Duaa4d8342010-06-04 15:47:54 +0800200 (enable & STS_PPCE_MASK) ? " PPCE" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 (enable & STS_IAA) ? " IAA" : "",
202 (enable & STS_FATAL) ? " FATAL" : "",
203 (enable & STS_FLR) ? " FLR" : "",
204 (enable & STS_PCD) ? " PCD" : "",
205 (enable & STS_ERR) ? " ERR" : "",
Geyslan G. Bem78698d62016-01-25 22:44:57 -0300206 (enable & STS_INT) ? " INT" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Geyslan G. Bem1cb1d1c2016-01-25 22:44:54 -0300209static const char *const fls_strings[] = { "1024", "512", "256", "??" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211static int
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300212dbg_command_buf(char *buf, unsigned len, const char *label, u32 command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300214 return scnprintf(buf, len,
Alek Duaa4d8342010-06-04 15:47:54 +0800215 "%s%scommand %07x %s%s%s%s%s%s=%d ithresh=%d%s%s%s%s "
216 "period=%s%s %s",
Geyslan G. Bem1cb1d1c2016-01-25 22:44:54 -0300217 label, label[0] ? " " : "", command,
Alek Duaa4d8342010-06-04 15:47:54 +0800218 (command & CMD_HIRD) ? " HIRD" : "",
219 (command & CMD_PPCEE) ? " PPCEE" : "",
220 (command & CMD_FSP) ? " FSP" : "",
221 (command & CMD_ASPE) ? " ASPE" : "",
222 (command & CMD_PSPE) ? " PSPE" : "",
223 (command & CMD_PARK) ? " park" : "(park)",
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300224 CMD_PARK_CNT(command),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 (command >> 16) & 0x3f,
226 (command & CMD_LRESET) ? " LReset" : "",
227 (command & CMD_IAAD) ? " IAAD" : "",
228 (command & CMD_ASE) ? " Async" : "",
229 (command & CMD_PSE) ? " Periodic" : "",
Geyslan G. Bem1cb1d1c2016-01-25 22:44:54 -0300230 fls_strings[(command >> 2) & 0x3],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 (command & CMD_RESET) ? " Reset" : "",
Geyslan G. Bem78698d62016-01-25 22:44:57 -0300232 (command & CMD_RUN) ? "RUN" : "HALT");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
235static int
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300236dbg_port_buf(char *buf, unsigned len, const char *label, int port, u32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 char *sig;
239
240 /* signaling state */
241 switch (status & (3 << 10)) {
Geyslan G. Bem5bb95ec2016-01-25 22:44:56 -0300242 case 0 << 10:
243 sig = "se0";
244 break;
245 case 1 << 10: /* low speed */
246 sig = "k";
247 break;
248 case 2 << 10:
249 sig = "j";
250 break;
251 default:
252 sig = "?";
253 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300256 return scnprintf(buf, len,
Alek Duaa4d8342010-06-04 15:47:54 +0800257 "%s%sport:%d status %06x %d %s%s%s%s%s%s "
258 "sig=%s%s%s%s%s%s%s%s%s%s%s",
Geyslan G. Bem1cb1d1c2016-01-25 22:44:54 -0300259 label, label[0] ? " " : "", port, status,
Geyslan G. Bemc2fb0172016-01-25 22:44:58 -0300260 status >> 25, /*device address */
261 (status & PORT_SSTS) >> 23 == PORTSC_SUSPEND_STS_ACK ?
Alek Duaa4d8342010-06-04 15:47:54 +0800262 " ACK" : "",
Geyslan G. Bemc2fb0172016-01-25 22:44:58 -0300263 (status & PORT_SSTS) >> 23 == PORTSC_SUSPEND_STS_NYET ?
Alek Duaa4d8342010-06-04 15:47:54 +0800264 " NYET" : "",
Geyslan G. Bemc2fb0172016-01-25 22:44:58 -0300265 (status & PORT_SSTS) >> 23 == PORTSC_SUSPEND_STS_STALL ?
Alek Duaa4d8342010-06-04 15:47:54 +0800266 " STALL" : "",
Geyslan G. Bemc2fb0172016-01-25 22:44:58 -0300267 (status & PORT_SSTS) >> 23 == PORTSC_SUSPEND_STS_ERR ?
Alek Duaa4d8342010-06-04 15:47:54 +0800268 " ERR" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 (status & PORT_POWER) ? " POWER" : "",
270 (status & PORT_OWNER) ? " OWNER" : "",
271 sig,
Alek Duaa4d8342010-06-04 15:47:54 +0800272 (status & PORT_LPM) ? " LPM" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 (status & PORT_RESET) ? " RESET" : "",
274 (status & PORT_SUSPEND) ? " SUSPEND" : "",
275 (status & PORT_RESUME) ? " RESUME" : "",
276 (status & PORT_OCC) ? " OCC" : "",
277 (status & PORT_OC) ? " OC" : "",
278 (status & PORT_PEC) ? " PEC" : "",
279 (status & PORT_PE) ? " PE" : "",
280 (status & PORT_CSC) ? " CSC" : "",
Stefan Roese6dbd6822007-05-01 09:29:37 -0700281 (status & PORT_CONNECT) ? " CONNECT" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
284#else
David Rientjes82345092007-05-11 14:39:44 -0700285static inline void __maybe_unused
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300286dbg_qh(char *label, struct ehci_hcd *ehci, struct ehci_qh *qh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{}
288
David Rientjes82345092007-05-11 14:39:44 -0700289static inline int __maybe_unused
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300290dbg_status_buf(char *buf, unsigned len, const char *label, u32 status)
Geyslan G. Bemc768ffb2016-01-25 22:45:00 -0300291{
292 return 0;
293}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
David Rientjes82345092007-05-11 14:39:44 -0700295static inline int __maybe_unused
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300296dbg_command_buf(char *buf, unsigned len, const char *label, u32 command)
Geyslan G. Bemc768ffb2016-01-25 22:45:00 -0300297{
298 return 0;
299}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
David Rientjes82345092007-05-11 14:39:44 -0700301static inline int __maybe_unused
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300302dbg_intr_buf(char *buf, unsigned len, const char *label, u32 enable)
Geyslan G. Bemc768ffb2016-01-25 22:45:00 -0300303{
304 return 0;
305}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
David Rientjes82345092007-05-11 14:39:44 -0700307static inline int __maybe_unused
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300308dbg_port_buf(char *buf, unsigned len, const char *label, int port, u32 status)
Geyslan G. Bemc768ffb2016-01-25 22:45:00 -0300309{
310 return 0;
311}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Oliver Neukum1c201632013-11-18 13:23:16 +0100313#endif /* CONFIG_DYNAMIC_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Geyslan G. Bem1f8e5af2016-01-25 22:45:02 -0300315static inline void
316dbg_status(struct ehci_hcd *ehci, const char *label, u32 status)
317{
318 char buf[80];
319
320 dbg_status_buf(buf, sizeof(buf), label, status);
321 ehci_dbg(ehci, "%s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Geyslan G. Bem1f8e5af2016-01-25 22:45:02 -0300324static inline void
325dbg_cmd(struct ehci_hcd *ehci, const char *label, u32 command)
326{
327 char buf[80];
328
329 dbg_command_buf(buf, sizeof(buf), label, command);
330 ehci_dbg(ehci, "%s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
Geyslan G. Bem1f8e5af2016-01-25 22:45:02 -0300333static inline void
334dbg_port(struct ehci_hcd *ehci, const char *label, int port, u32 status)
335{
336 char buf[80];
337
338 dbg_port_buf(buf, sizeof(buf), label, port, status);
339 ehci_dbg(ehci, "%s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342/*-------------------------------------------------------------------------*/
343
344#ifdef STUB_DEBUG_FILES
345
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300346static inline void create_debug_files(struct ehci_hcd *bus) { }
347static inline void remove_debug_files(struct ehci_hcd *bus) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349#else
350
Tony Jones694cc202007-09-11 14:07:31 -0700351/* troubleshooting help: expose state in debugfs */
352
353static int debug_async_open(struct inode *, struct file *);
Alan Sternd0ce5c62013-10-11 11:29:13 -0400354static int debug_bandwidth_open(struct inode *, struct file *);
Tony Jones694cc202007-09-11 14:07:31 -0700355static int debug_periodic_open(struct inode *, struct file *);
356static int debug_registers_open(struct inode *, struct file *);
Alek Duaa4d8342010-06-04 15:47:54 +0800357
Tony Jones694cc202007-09-11 14:07:31 -0700358static ssize_t debug_output(struct file*, char __user*, size_t, loff_t*);
359static int debug_close(struct inode *, struct file *);
360
361static const struct file_operations debug_async_fops = {
362 .owner = THIS_MODULE,
363 .open = debug_async_open,
364 .read = debug_output,
365 .release = debug_close,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200366 .llseek = default_llseek,
Tony Jones694cc202007-09-11 14:07:31 -0700367};
Geyslan G. Beme1666312016-01-25 22:45:01 -0300368
Alan Sternd0ce5c62013-10-11 11:29:13 -0400369static const struct file_operations debug_bandwidth_fops = {
370 .owner = THIS_MODULE,
371 .open = debug_bandwidth_open,
372 .read = debug_output,
373 .release = debug_close,
374 .llseek = default_llseek,
375};
Geyslan G. Beme1666312016-01-25 22:45:01 -0300376
Tony Jones694cc202007-09-11 14:07:31 -0700377static const struct file_operations debug_periodic_fops = {
378 .owner = THIS_MODULE,
379 .open = debug_periodic_open,
380 .read = debug_output,
381 .release = debug_close,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200382 .llseek = default_llseek,
Tony Jones694cc202007-09-11 14:07:31 -0700383};
Geyslan G. Beme1666312016-01-25 22:45:01 -0300384
Tony Jones694cc202007-09-11 14:07:31 -0700385static const struct file_operations debug_registers_fops = {
386 .owner = THIS_MODULE,
387 .open = debug_registers_open,
388 .read = debug_output,
389 .release = debug_close,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200390 .llseek = default_llseek,
Tony Jones694cc202007-09-11 14:07:31 -0700391};
392
393static struct dentry *ehci_debug_root;
394
395struct debug_buffer {
396 ssize_t (*fill_func)(struct debug_buffer *); /* fill method */
397 struct usb_bus *bus;
398 struct mutex mutex; /* protect filling of buffer */
399 size_t count; /* number of characters filled into buffer */
Ming Lei3c04e202008-09-18 23:06:21 +0800400 char *output_buf;
401 size_t alloc_size;
Tony Jones694cc202007-09-11 14:07:31 -0700402};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Geyslan G. Bem1f8e5af2016-01-25 22:45:02 -0300404static inline char speed_char(u32 info1)
405{
406 switch (info1 & (3 << 12)) {
407 case QH_FULL_SPEED:
408 return 'f';
409 case QH_LOW_SPEED:
410 return 'l';
411 case QH_HIGH_SPEED:
412 return 'h';
413 default:
414 return '?';
415 }
416}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Stefan Roese6dbd6822007-05-01 09:29:37 -0700418static inline char token_mark(struct ehci_hcd *ehci, __hc32 token)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Stefan Roese6dbd6822007-05-01 09:29:37 -0700420 __u32 v = hc32_to_cpu(ehci, token);
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (v & QTD_STS_ACTIVE)
423 return '*';
424 if (v & QTD_STS_HALT)
425 return '-';
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300426 if (!IS_SHORT_READ(v))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return ' ';
428 /* tries to advance through hw_alt_next */
429 return '/';
430}
431
Geyslan G. Bemc768ffb2016-01-25 22:45:00 -0300432static void qh_lines(struct ehci_hcd *ehci, struct ehci_qh *qh,
433 char **nextp, unsigned *sizep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 u32 scratch;
436 u32 hw_curr;
437 struct list_head *entry;
438 struct ehci_qtd *td;
439 unsigned temp;
440 unsigned size = *sizep;
441 char *next = *nextp;
442 char mark;
Al Virofd05e722008-04-28 07:00:16 +0100443 __le32 list_end = EHCI_LIST_END(ehci);
Alek Du3807e262009-07-14 07:23:29 +0800444 struct ehci_qh_hw *hw = qh->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Alek Du3807e262009-07-14 07:23:29 +0800446 if (hw->hw_qtd_next == list_end) /* NEC does this */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 mark = '@';
448 else
Alek Du3807e262009-07-14 07:23:29 +0800449 mark = token_mark(ehci, hw->hw_token);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (mark == '/') { /* qh_alt_next controls qh advance? */
Alek Du3807e262009-07-14 07:23:29 +0800451 if ((hw->hw_alt_next & QTD_MASK(ehci))
452 == ehci->async->hw->hw_alt_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 mark = '#'; /* blocked */
Alek Du3807e262009-07-14 07:23:29 +0800454 else if (hw->hw_alt_next == list_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 mark = '.'; /* use hw_qtd_next */
456 /* else alt_next points to some other qtd */
457 }
Alek Du3807e262009-07-14 07:23:29 +0800458 scratch = hc32_to_cpup(ehci, &hw->hw_info1);
459 hw_curr = (mark == '*') ? hc32_to_cpup(ehci, &hw->hw_current) : 0;
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300460 temp = scnprintf(next, size,
Alan Stern8ee10d62015-11-20 13:53:45 -0500461 "qh/%p dev%d %cs ep%d %08x %08x (%08x%c %s nak%d)"
462 " [cur %08x next %08x buf[0] %08x]",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 qh, scratch & 0x007f,
464 speed_char (scratch),
465 (scratch >> 8) & 0x000f,
Alek Du3807e262009-07-14 07:23:29 +0800466 scratch, hc32_to_cpup(ehci, &hw->hw_info2),
467 hc32_to_cpup(ehci, &hw->hw_token), mark,
468 (cpu_to_hc32(ehci, QTD_TOGGLE) & hw->hw_token)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 ? "data1" : "data0",
Alan Stern8ee10d62015-11-20 13:53:45 -0500470 (hc32_to_cpup(ehci, &hw->hw_alt_next) >> 1) & 0x0f,
471 hc32_to_cpup(ehci, &hw->hw_current),
472 hc32_to_cpup(ehci, &hw->hw_qtd_next),
473 hc32_to_cpup(ehci, &hw->hw_buf[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 size -= temp;
475 next += temp;
476
477 /* hc may be modifying the list as we read it ... */
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300478 list_for_each(entry, &qh->qtd_list) {
Geyslan G. Bem5bb95ec2016-01-25 22:44:56 -0300479 char *type;
480
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300481 td = list_entry(entry, struct ehci_qtd, qtd_list);
Stefan Roese6dbd6822007-05-01 09:29:37 -0700482 scratch = hc32_to_cpup(ehci, &td->hw_token);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 mark = ' ';
484 if (hw_curr == td->qtd_dma)
485 mark = '*';
Alek Du3807e262009-07-14 07:23:29 +0800486 else if (hw->hw_qtd_next == cpu_to_hc32(ehci, td->qtd_dma))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 mark = '+';
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300488 else if (QTD_LENGTH(scratch)) {
Alek Du3807e262009-07-14 07:23:29 +0800489 if (td->hw_alt_next == ehci->async->hw->hw_alt_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 mark = '#';
Stefan Roese6dbd6822007-05-01 09:29:37 -0700491 else if (td->hw_alt_next != list_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 mark = '/';
493 }
Geyslan G. Bem5bb95ec2016-01-25 22:44:56 -0300494 switch ((scratch >> 8) & 0x03) {
495 case 0:
496 type = "out";
497 break;
498 case 1:
499 type = "in";
500 break;
501 case 2:
502 type = "setup";
503 break;
504 default:
505 type = "?";
506 break;
507 }
Geyslan G. Bema5355972016-01-25 22:44:59 -0300508 temp = scnprintf(next, size,
Alan Stern8ee10d62015-11-20 13:53:45 -0500509 "\n\t%p%c%s len=%d %08x urb %p"
510 " [td %08x buf[0] %08x]",
Geyslan G. Bem5bb95ec2016-01-25 22:44:56 -0300511 td, mark, type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 (scratch >> 16) & 0x7fff,
513 scratch,
Alan Stern8ee10d62015-11-20 13:53:45 -0500514 td->urb,
515 (u32) td->qtd_dma,
516 hc32_to_cpup(ehci, &td->hw_buf[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 size -= temp;
518 next += temp;
519 if (temp == size)
520 goto done;
521 }
522
Geyslan G. Bema5355972016-01-25 22:44:59 -0300523 temp = scnprintf(next, size, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 size -= temp;
525 next += temp;
526
527done:
528 *sizep = size;
529 *nextp = next;
530}
531
Tony Jones694cc202007-09-11 14:07:31 -0700532static ssize_t fill_async_buffer(struct debug_buffer *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 struct usb_hcd *hcd;
535 struct ehci_hcd *ehci;
536 unsigned long flags;
537 unsigned temp, size;
538 char *next;
539 struct ehci_qh *qh;
540
Tony Jones694cc202007-09-11 14:07:31 -0700541 hcd = bus_to_hcd(buf->bus);
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300542 ehci = hcd_to_ehci(hcd);
Ming Lei3c04e202008-09-18 23:06:21 +0800543 next = buf->output_buf;
544 size = buf->alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Tony Jones694cc202007-09-11 14:07:31 -0700546 *next = 0;
547
Geyslan G. Bem0784b4d2016-01-25 22:44:55 -0300548 /*
549 * dumps a snapshot of the async schedule.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 * usually empty except for long-term bulk reads, or head.
551 * one QH per line, and TDs we know about
552 */
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300553 spin_lock_irqsave(&ehci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 for (qh = ehci->async->qh_next.qh; size > 0 && qh; qh = qh->qh_next.qh)
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300555 qh_lines(ehci, qh, &next, &size);
Alan Stern6e018752013-03-22 13:31:45 -0400556 if (!list_empty(&ehci->async_unlink) && size > 0) {
Alan Stern99ac5b12012-07-11 11:21:38 -0400557 temp = scnprintf(next, size, "\nunlink =\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 size -= temp;
559 next += temp;
560
Alan Stern6e018752013-03-22 13:31:45 -0400561 list_for_each_entry(qh, &ehci->async_unlink, unlink_node) {
562 if (size <= 0)
563 break;
564 qh_lines(ehci, qh, &next, &size);
565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300567 spin_unlock_irqrestore(&ehci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Ming Lei3c04e202008-09-18 23:06:21 +0800569 return strlen(buf->output_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Alan Sternd0ce5c62013-10-11 11:29:13 -0400572static ssize_t fill_bandwidth_buffer(struct debug_buffer *buf)
573{
574 struct ehci_hcd *ehci;
Alan Sternb35c5002013-10-11 22:16:21 -0400575 struct ehci_tt *tt;
576 struct ehci_per_sched *ps;
Alan Sternd0ce5c62013-10-11 11:29:13 -0400577 unsigned temp, size;
578 char *next;
579 unsigned i;
580 u8 *bw;
Alan Sternb35c5002013-10-11 22:16:21 -0400581 u16 *bf;
582 u8 budget[EHCI_BANDWIDTH_SIZE];
Alan Sternd0ce5c62013-10-11 11:29:13 -0400583
584 ehci = hcd_to_ehci(bus_to_hcd(buf->bus));
585 next = buf->output_buf;
586 size = buf->alloc_size;
587
588 *next = 0;
589
590 spin_lock_irq(&ehci->lock);
591
592 /* Dump the HS bandwidth table */
593 temp = scnprintf(next, size,
594 "HS bandwidth allocation (us per microframe)\n");
595 size -= temp;
596 next += temp;
597 for (i = 0; i < EHCI_BANDWIDTH_SIZE; i += 8) {
598 bw = &ehci->bandwidth[i];
599 temp = scnprintf(next, size,
600 "%2u: %4u%4u%4u%4u%4u%4u%4u%4u\n",
601 i, bw[0], bw[1], bw[2], bw[3],
602 bw[4], bw[5], bw[6], bw[7]);
603 size -= temp;
604 next += temp;
605 }
Alan Sternb35c5002013-10-11 22:16:21 -0400606
607 /* Dump all the FS/LS tables */
608 list_for_each_entry(tt, &ehci->tt_list, tt_list) {
609 temp = scnprintf(next, size,
610 "\nTT %s port %d FS/LS bandwidth allocation (us per frame)\n",
611 dev_name(&tt->usb_tt->hub->dev),
612 tt->tt_port + !!tt->usb_tt->multi);
613 size -= temp;
614 next += temp;
615
616 bf = tt->bandwidth;
617 temp = scnprintf(next, size,
618 " %5u%5u%5u%5u%5u%5u%5u%5u\n",
619 bf[0], bf[1], bf[2], bf[3],
620 bf[4], bf[5], bf[6], bf[7]);
621 size -= temp;
622 next += temp;
623
624 temp = scnprintf(next, size,
625 "FS/LS budget (us per microframe)\n");
626 size -= temp;
627 next += temp;
628 compute_tt_budget(budget, tt);
629 for (i = 0; i < EHCI_BANDWIDTH_SIZE; i += 8) {
630 bw = &budget[i];
631 temp = scnprintf(next, size,
632 "%2u: %4u%4u%4u%4u%4u%4u%4u%4u\n",
633 i, bw[0], bw[1], bw[2], bw[3],
634 bw[4], bw[5], bw[6], bw[7]);
635 size -= temp;
636 next += temp;
637 }
638 list_for_each_entry(ps, &tt->ps_list, ps_list) {
639 temp = scnprintf(next, size,
640 "%s ep %02x: %4u @ %2u.%u+%u mask %04x\n",
641 dev_name(&ps->udev->dev),
642 ps->ep->desc.bEndpointAddress,
643 ps->tt_usecs,
644 ps->bw_phase, ps->phase_uf,
645 ps->bw_period, ps->cs_mask);
646 size -= temp;
647 next += temp;
648 }
649 }
Alan Sternd0ce5c62013-10-11 11:29:13 -0400650 spin_unlock_irq(&ehci->lock);
651
652 return next - buf->output_buf;
653}
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655#define DBG_SCHED_LIMIT 64
Tony Jones694cc202007-09-11 14:07:31 -0700656static ssize_t fill_periodic_buffer(struct debug_buffer *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 struct usb_hcd *hcd;
659 struct ehci_hcd *ehci;
660 unsigned long flags;
661 union ehci_shadow p, *seen;
662 unsigned temp, size, seen_count;
663 char *next;
664 unsigned i;
Stefan Roese6dbd6822007-05-01 09:29:37 -0700665 __hc32 tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Greg Kroah-Hartman911fdb62015-04-30 11:32:50 +0200667 seen = kmalloc(DBG_SCHED_LIMIT * sizeof *seen, GFP_ATOMIC);
668 if (!seen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return 0;
670 seen_count = 0;
671
Tony Jones694cc202007-09-11 14:07:31 -0700672 hcd = bus_to_hcd(buf->bus);
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300673 ehci = hcd_to_ehci(hcd);
Ming Lei3c04e202008-09-18 23:06:21 +0800674 next = buf->output_buf;
675 size = buf->alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300677 temp = scnprintf(next, size, "size = %d\n", ehci->periodic_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 size -= temp;
679 next += temp;
680
Geyslan G. Bem0784b4d2016-01-25 22:44:55 -0300681 /*
682 * dump a snapshot of the periodic schedule.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 * iso changes, interrupt usually doesn't.
684 */
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300685 spin_lock_irqsave(&ehci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 for (i = 0; i < ehci->periodic_size; i++) {
Geyslan G. Bem1cb1d1c2016-01-25 22:44:54 -0300687 p = ehci->pshadow[i];
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300688 if (likely(!p.ptr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 continue;
Geyslan G. Bem1cb1d1c2016-01-25 22:44:54 -0300690 tag = Q_NEXT_TYPE(ehci, ehci->periodic[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300692 temp = scnprintf(next, size, "%4d: ", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 size -= temp;
694 next += temp;
695
696 do {
Alek Du3807e262009-07-14 07:23:29 +0800697 struct ehci_qh_hw *hw;
698
Stefan Roese6dbd6822007-05-01 09:29:37 -0700699 switch (hc32_to_cpu(ehci, tag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 case Q_TYPE_QH:
Alek Du3807e262009-07-14 07:23:29 +0800701 hw = p.qh->hw;
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300702 temp = scnprintf(next, size, " qh%d-%04x/%p",
Alan Sternffa02482013-10-11 11:29:03 -0400703 p.qh->ps.period,
Stefan Roese6dbd6822007-05-01 09:29:37 -0700704 hc32_to_cpup(ehci,
Alek Du3807e262009-07-14 07:23:29 +0800705 &hw->hw_info2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 /* uframe masks */
David Brownell7dedacf2005-08-04 18:06:41 -0700707 & (QH_CMASK | QH_SMASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 p.qh);
709 size -= temp;
710 next += temp;
711 /* don't repeat what follows this qh */
712 for (temp = 0; temp < seen_count; temp++) {
Geyslan G. Bem1cb1d1c2016-01-25 22:44:54 -0300713 if (seen[temp].ptr != p.ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 continue;
Ming Lei3c4bb712008-09-18 23:06:38 +0800715 if (p.qh->qh_next.ptr) {
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300716 temp = scnprintf(next, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 " ...");
Ming Lei3c4bb712008-09-18 23:06:38 +0800718 size -= temp;
719 next += temp;
720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 break;
722 }
723 /* show more info the first time around */
Ming Lei3c4bb712008-09-18 23:06:38 +0800724 if (temp == seen_count) {
Stefan Roese6dbd6822007-05-01 09:29:37 -0700725 u32 scratch = hc32_to_cpup(ehci,
Alek Du3807e262009-07-14 07:23:29 +0800726 &hw->hw_info1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 struct ehci_qtd *qtd;
728 char *type = "";
729
730 /* count tds, get ep direction */
731 temp = 0;
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300732 list_for_each_entry(qtd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 &p.qh->qtd_list,
734 qtd_list) {
735 temp++;
Geyslan G. Bem5bb95ec2016-01-25 22:44:56 -0300736 switch ((hc32_to_cpu(ehci,
737 qtd->hw_token) >> 8)
738 & 0x03) {
739 case 0:
740 type = "out";
741 continue;
742 case 1:
743 type = "in";
744 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746 }
747
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300748 temp = scnprintf(next, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 " (%c%d ep%d%s "
750 "[%d/%d] q%d p%d)",
751 speed_char (scratch),
752 scratch & 0x007f,
753 (scratch >> 8) & 0x000f, type,
Alan Sternffa02482013-10-11 11:29:03 -0400754 p.qh->ps.usecs,
755 p.qh->ps.c_usecs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 temp,
757 0x7ff & (scratch >> 16));
758
759 if (seen_count < DBG_SCHED_LIMIT)
Geyslan G. Bem1cb1d1c2016-01-25 22:44:54 -0300760 seen[seen_count++].qh = p.qh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 } else
762 temp = 0;
Alan Stern17dcfc92012-09-19 17:00:55 -0400763 tag = Q_NEXT_TYPE(ehci, hw->hw_next);
764 p = p.qh->qh_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 break;
766 case Q_TYPE_FSTN:
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300767 temp = scnprintf(next, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 " fstn-%8x/%p", p.fstn->hw_prev,
769 p.fstn);
Stefan Roese6dbd6822007-05-01 09:29:37 -0700770 tag = Q_NEXT_TYPE(ehci, p.fstn->hw_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 p = p.fstn->fstn_next;
772 break;
773 case Q_TYPE_ITD:
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300774 temp = scnprintf(next, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 " itd/%p", p.itd);
Stefan Roese6dbd6822007-05-01 09:29:37 -0700776 tag = Q_NEXT_TYPE(ehci, p.itd->hw_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 p = p.itd->itd_next;
778 break;
779 case Q_TYPE_SITD:
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300780 temp = scnprintf(next, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 " sitd%d-%04x/%p",
Alan Sternffa02482013-10-11 11:29:03 -0400782 p.sitd->stream->ps.period,
Stefan Roese6dbd6822007-05-01 09:29:37 -0700783 hc32_to_cpup(ehci, &p.sitd->hw_uframe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 & 0x0000ffff,
785 p.sitd);
Stefan Roese6dbd6822007-05-01 09:29:37 -0700786 tag = Q_NEXT_TYPE(ehci, p.sitd->hw_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 p = p.sitd->sitd_next;
788 break;
789 }
790 size -= temp;
791 next += temp;
792 } while (p.ptr);
793
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300794 temp = scnprintf(next, size, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 size -= temp;
796 next += temp;
797 }
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300798 spin_unlock_irqrestore(&ehci->lock, flags);
799 kfree(seen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Ming Lei3c04e202008-09-18 23:06:21 +0800801 return buf->alloc_size - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803#undef DBG_SCHED_LIMIT
804
Alan Sterne8799902011-08-18 16:31:30 -0400805static const char *rh_state_string(struct ehci_hcd *ehci)
806{
807 switch (ehci->rh_state) {
808 case EHCI_RH_HALTED:
809 return "halted";
810 case EHCI_RH_SUSPENDED:
811 return "suspended";
812 case EHCI_RH_RUNNING:
813 return "running";
Alan Sternc0c53db2012-07-11 11:21:48 -0400814 case EHCI_RH_STOPPING:
815 return "stopping";
Alan Sterne8799902011-08-18 16:31:30 -0400816 }
817 return "?";
818}
819
Tony Jones694cc202007-09-11 14:07:31 -0700820static ssize_t fill_registers_buffer(struct debug_buffer *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 struct usb_hcd *hcd;
823 struct ehci_hcd *ehci;
824 unsigned long flags;
825 unsigned temp, size, i;
Geyslan G. Bem1cb1d1c2016-01-25 22:44:54 -0300826 char *next, scratch[80];
827 static char fmt[] = "%*s\n";
828 static char label[] = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Tony Jones694cc202007-09-11 14:07:31 -0700830 hcd = bus_to_hcd(buf->bus);
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300831 ehci = hcd_to_ehci(hcd);
Ming Lei3c04e202008-09-18 23:06:21 +0800832 next = buf->output_buf;
833 size = buf->alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300835 spin_lock_irqsave(&ehci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Alan Stern541c7d42010-06-22 16:39:10 -0400837 if (!HCD_HW_ACCESSIBLE(hcd)) {
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300838 size = scnprintf(next, size,
Alan Stern2b70f072008-10-02 11:47:15 -0400839 "bus %s, device %s\n"
David Brownelld49d4312005-05-07 13:21:50 -0700840 "%s\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 "SUSPENDED (no register access)\n",
842 hcd->self.controller->bus->name,
Kay Sievers7071a3c2008-05-02 06:02:41 +0200843 dev_name(hcd->self.controller),
David Brownelld49d4312005-05-07 13:21:50 -0700844 hcd->product_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 goto done;
846 }
847
848 /* Capability Registers */
Jan Anderssonc4301312011-05-03 20:11:57 +0200849 i = HC_VERSION(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase));
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300850 temp = scnprintf(next, size,
Alan Stern2b70f072008-10-02 11:47:15 -0400851 "bus %s, device %s\n"
David Brownelld49d4312005-05-07 13:21:50 -0700852 "%s\n"
Alan Sterne8799902011-08-18 16:31:30 -0400853 "EHCI %x.%02x, rh state %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 hcd->self.controller->bus->name,
Kay Sievers7071a3c2008-05-02 06:02:41 +0200855 dev_name(hcd->self.controller),
David Brownelld49d4312005-05-07 13:21:50 -0700856 hcd->product_desc,
Alan Sterne8799902011-08-18 16:31:30 -0400857 i >> 8, i & 0x0ff, rh_state_string(ehci));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 size -= temp;
859 next += temp;
860
David Brownelld49d4312005-05-07 13:21:50 -0700861#ifdef CONFIG_PCI
862 /* EHCI 0.96 and later may have "extended capabilities" */
Yijing Wange10e6f42013-12-05 19:21:32 +0800863 if (dev_is_pci(hcd->self.controller)) {
David Brownelld49d4312005-05-07 13:21:50 -0700864 struct pci_dev *pdev;
865 u32 offset, cap, cap2;
Geyslan G. Bemc2fb0172016-01-25 22:44:58 -0300866 unsigned count = 256 / 4;
David Brownelld49d4312005-05-07 13:21:50 -0700867
868 pdev = to_pci_dev(ehci_to_hcd(ehci)->self.controller);
Stefan Roese6dbd6822007-05-01 09:29:37 -0700869 offset = HCC_EXT_CAPS(ehci_readl(ehci,
870 &ehci->caps->hcc_params));
David Brownelld49d4312005-05-07 13:21:50 -0700871 while (offset && count--) {
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300872 pci_read_config_dword(pdev, offset, &cap);
David Brownelld49d4312005-05-07 13:21:50 -0700873 switch (cap & 0xff) {
874 case 1:
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300875 temp = scnprintf(next, size,
David Brownelld49d4312005-05-07 13:21:50 -0700876 "ownership %08x%s%s\n", cap,
877 (cap & (1 << 24)) ? " linux" : "",
878 (cap & (1 << 16)) ? " firmware" : "");
879 size -= temp;
880 next += temp;
881
882 offset += 4;
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300883 pci_read_config_dword(pdev, offset, &cap2);
884 temp = scnprintf(next, size,
David Brownelld49d4312005-05-07 13:21:50 -0700885 "SMI sts/enable 0x%08x\n", cap2);
886 size -= temp;
887 next += temp;
888 break;
889 case 0: /* illegal reserved capability */
890 cap = 0;
891 /* FALLTHROUGH */
892 default: /* unknown */
893 break;
894 }
895 temp = (cap >> 8) & 0xff;
896 }
897 }
898#endif
899
Geyslan G. Bem0784b4d2016-01-25 22:44:55 -0300900 /* FIXME interpret both types of params */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100901 i = ehci_readl(ehci, &ehci->caps->hcs_params);
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300902 temp = scnprintf(next, size, "structural params 0x%08x\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 size -= temp;
904 next += temp;
905
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100906 i = ehci_readl(ehci, &ehci->caps->hcc_params);
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300907 temp = scnprintf(next, size, "capability params 0x%08x\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 size -= temp;
909 next += temp;
910
911 /* Operational Registers */
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300912 temp = dbg_status_buf(scratch, sizeof(scratch), label,
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100913 ehci_readl(ehci, &ehci->regs->status));
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300914 temp = scnprintf(next, size, fmt, temp, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 size -= temp;
916 next += temp;
917
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300918 temp = dbg_command_buf(scratch, sizeof(scratch), label,
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100919 ehci_readl(ehci, &ehci->regs->command));
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300920 temp = scnprintf(next, size, fmt, temp, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 size -= temp;
922 next += temp;
923
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300924 temp = dbg_intr_buf(scratch, sizeof(scratch), label,
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100925 ehci_readl(ehci, &ehci->regs->intr_enable));
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300926 temp = scnprintf(next, size, fmt, temp, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 size -= temp;
928 next += temp;
929
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300930 temp = scnprintf(next, size, "uframe %04x\n",
Alan Stern68aa95d2011-10-12 10:39:14 -0400931 ehci_read_frame_index(ehci));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 size -= temp;
933 next += temp;
934
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300935 for (i = 1; i <= HCS_N_PORTS(ehci->hcs_params); i++) {
936 temp = dbg_port_buf(scratch, sizeof(scratch), label, i,
Stefan Roese6dbd6822007-05-01 09:29:37 -0700937 ehci_readl(ehci,
938 &ehci->regs->port_status[i - 1]));
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300939 temp = scnprintf(next, size, fmt, temp, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 size -= temp;
941 next += temp;
David Brownelld49d4312005-05-07 13:21:50 -0700942 if (i == HCS_DEBUG_PORT(ehci->hcs_params) && ehci->debug) {
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300943 temp = scnprintf(next, size,
David Brownelld49d4312005-05-07 13:21:50 -0700944 " debug control %08x\n",
Stefan Roese6dbd6822007-05-01 09:29:37 -0700945 ehci_readl(ehci,
946 &ehci->debug->control));
David Brownelld49d4312005-05-07 13:21:50 -0700947 size -= temp;
948 next += temp;
949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951
Alan Stern6e018752013-03-22 13:31:45 -0400952 if (!list_empty(&ehci->async_unlink)) {
Alan Stern99ac5b12012-07-11 11:21:38 -0400953 temp = scnprintf(next, size, "async unlink qh %p\n",
Alan Stern6e018752013-03-22 13:31:45 -0400954 list_first_entry(&ehci->async_unlink,
955 struct ehci_qh, unlink_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 size -= temp;
957 next += temp;
958 }
959
960#ifdef EHCI_STATS
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300961 temp = scnprintf(next, size,
Alan Stern99ac5b12012-07-11 11:21:38 -0400962 "irq normal %ld err %ld iaa %ld (lost %ld)\n",
963 ehci->stats.normal, ehci->stats.error, ehci->stats.iaa,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 ehci->stats.lost_iaa);
965 size -= temp;
966 next += temp;
967
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300968 temp = scnprintf(next, size, "complete %ld unlink %ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 ehci->stats.complete, ehci->stats.unlink);
970 size -= temp;
971 next += temp;
972#endif
973
974done:
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -0300975 spin_unlock_irqrestore(&ehci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Ming Lei3c04e202008-09-18 23:06:21 +0800977 return buf->alloc_size - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
Tony Jones694cc202007-09-11 14:07:31 -0700979
980static struct debug_buffer *alloc_buffer(struct usb_bus *bus,
Geyslan G. Bemc768ffb2016-01-25 22:45:00 -0300981 ssize_t (*fill_func)(struct debug_buffer *))
Tony Jones694cc202007-09-11 14:07:31 -0700982{
983 struct debug_buffer *buf;
984
985 buf = kzalloc(sizeof(struct debug_buffer), GFP_KERNEL);
986
987 if (buf) {
988 buf->bus = bus;
989 buf->fill_func = fill_func;
990 mutex_init(&buf->mutex);
Ming Lei3c04e202008-09-18 23:06:21 +0800991 buf->alloc_size = PAGE_SIZE;
Tony Jones694cc202007-09-11 14:07:31 -0700992 }
993
994 return buf;
995}
996
997static int fill_buffer(struct debug_buffer *buf)
998{
999 int ret = 0;
1000
Ming Lei3c04e202008-09-18 23:06:21 +08001001 if (!buf->output_buf)
Jesper Juhl73f35c62010-11-09 00:10:52 +01001002 buf->output_buf = vmalloc(buf->alloc_size);
Tony Jones694cc202007-09-11 14:07:31 -07001003
Ming Lei3c04e202008-09-18 23:06:21 +08001004 if (!buf->output_buf) {
Tony Jones694cc202007-09-11 14:07:31 -07001005 ret = -ENOMEM;
1006 goto out;
1007 }
1008
1009 ret = buf->fill_func(buf);
1010
1011 if (ret >= 0) {
1012 buf->count = ret;
1013 ret = 0;
1014 }
1015
1016out:
1017 return ret;
1018}
1019
1020static ssize_t debug_output(struct file *file, char __user *user_buf,
Geyslan G. Bemc768ffb2016-01-25 22:45:00 -03001021 size_t len, loff_t *offset)
Tony Jones694cc202007-09-11 14:07:31 -07001022{
1023 struct debug_buffer *buf = file->private_data;
1024 int ret = 0;
1025
1026 mutex_lock(&buf->mutex);
1027 if (buf->count == 0) {
1028 ret = fill_buffer(buf);
1029 if (ret != 0) {
1030 mutex_unlock(&buf->mutex);
1031 goto out;
1032 }
1033 }
1034 mutex_unlock(&buf->mutex);
1035
1036 ret = simple_read_from_buffer(user_buf, len, offset,
Ming Lei3c04e202008-09-18 23:06:21 +08001037 buf->output_buf, buf->count);
Tony Jones694cc202007-09-11 14:07:31 -07001038
1039out:
1040 return ret;
Tony Jones694cc202007-09-11 14:07:31 -07001041}
1042
1043static int debug_close(struct inode *inode, struct file *file)
1044{
1045 struct debug_buffer *buf = file->private_data;
1046
1047 if (buf) {
Figo.zhangf8086a02009-06-06 20:31:49 +08001048 vfree(buf->output_buf);
Tony Jones694cc202007-09-11 14:07:31 -07001049 kfree(buf);
1050 }
1051
1052 return 0;
1053}
Alan Sternd0ce5c62013-10-11 11:29:13 -04001054
Tony Jones694cc202007-09-11 14:07:31 -07001055static int debug_async_open(struct inode *inode, struct file *file)
1056{
1057 file->private_data = alloc_buffer(inode->i_private, fill_async_buffer);
1058
1059 return file->private_data ? 0 : -ENOMEM;
1060}
1061
Alan Sternd0ce5c62013-10-11 11:29:13 -04001062static int debug_bandwidth_open(struct inode *inode, struct file *file)
1063{
1064 file->private_data = alloc_buffer(inode->i_private,
1065 fill_bandwidth_buffer);
1066
1067 return file->private_data ? 0 : -ENOMEM;
1068}
1069
Tony Jones694cc202007-09-11 14:07:31 -07001070static int debug_periodic_open(struct inode *inode, struct file *file)
1071{
Ming Lei3c04e202008-09-18 23:06:21 +08001072 struct debug_buffer *buf;
Geyslan G. Bem8d587d62016-01-25 22:45:03 -03001073
Ming Lei3c04e202008-09-18 23:06:21 +08001074 buf = alloc_buffer(inode->i_private, fill_periodic_buffer);
1075 if (!buf)
1076 return -ENOMEM;
Tony Jones694cc202007-09-11 14:07:31 -07001077
Geyslan G. Bemc2fb0172016-01-25 22:44:58 -03001078 buf->alloc_size = (sizeof(void *) == 4 ? 6 : 8) * PAGE_SIZE;
Ming Lei3c04e202008-09-18 23:06:21 +08001079 file->private_data = buf;
1080 return 0;
Tony Jones694cc202007-09-11 14:07:31 -07001081}
1082
1083static int debug_registers_open(struct inode *inode, struct file *file)
1084{
1085 file->private_data = alloc_buffer(inode->i_private,
1086 fill_registers_buffer);
1087
1088 return file->private_data ? 0 : -ENOMEM;
1089}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -03001091static inline void create_debug_files(struct ehci_hcd *ehci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
Tony Jones694cc202007-09-11 14:07:31 -07001093 struct usb_bus *bus = &ehci_to_hcd(ehci)->self;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Tony Jones694cc202007-09-11 14:07:31 -07001095 ehci->debug_dir = debugfs_create_dir(bus->bus_name, ehci_debug_root);
1096 if (!ehci->debug_dir)
Ming Lei185c9bc2010-07-28 22:33:28 +08001097 return;
Tony Jones694cc202007-09-11 14:07:31 -07001098
Ming Lei185c9bc2010-07-28 22:33:28 +08001099 if (!debugfs_create_file("async", S_IRUGO, ehci->debug_dir, bus,
1100 &debug_async_fops))
1101 goto file_error;
Tony Jones694cc202007-09-11 14:07:31 -07001102
Alan Sternd0ce5c62013-10-11 11:29:13 -04001103 if (!debugfs_create_file("bandwidth", S_IRUGO, ehci->debug_dir, bus,
1104 &debug_bandwidth_fops))
1105 goto file_error;
1106
Ming Lei185c9bc2010-07-28 22:33:28 +08001107 if (!debugfs_create_file("periodic", S_IRUGO, ehci->debug_dir, bus,
1108 &debug_periodic_fops))
1109 goto file_error;
Tony Jones694cc202007-09-11 14:07:31 -07001110
Ming Lei185c9bc2010-07-28 22:33:28 +08001111 if (!debugfs_create_file("registers", S_IRUGO, ehci->debug_dir, bus,
1112 &debug_registers_fops))
1113 goto file_error;
Alek Duaa4d8342010-06-04 15:47:54 +08001114
Tony Jones694cc202007-09-11 14:07:31 -07001115 return;
1116
Ming Lei185c9bc2010-07-28 22:33:28 +08001117file_error:
1118 debugfs_remove_recursive(ehci->debug_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119}
1120
Geyslan G. Bem668ab0d2016-01-25 22:44:53 -03001121static inline void remove_debug_files(struct ehci_hcd *ehci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Ming Lei185c9bc2010-07-28 22:33:28 +08001123 debugfs_remove_recursive(ehci->debug_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125
1126#endif /* STUB_DEBUG_FILES */