Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2001-2002 by David Brownell |
David Brownell | 53bd6a6 | 2006-08-30 14:50:06 -0700 | [diff] [blame] | 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | /* this file is part of ehci-hcd.c */ |
| 17 | |
Oliver Neukum | 1c20163 | 2013-11-18 13:23:16 +0100 | [diff] [blame] | 18 | #ifdef CONFIG_DYNAMIC_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Geyslan G. Bem | 0784b4d | 2016-01-25 22:44:55 -0300 | [diff] [blame] | 20 | /* |
| 21 | * check the values in the HCSPARAMS register |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | * (host controller _Structural_ parameters) |
| 23 | * see EHCI spec, Table 2-4 for each value |
| 24 | */ |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 25 | static void dbg_hcs_params(struct ehci_hcd *ehci, char *label) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | { |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 27 | u32 params = ehci_readl(ehci, &ehci->caps->hcs_params); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 29 | ehci_dbg(ehci, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | "%s hcs_params 0x%x dbg=%d%s cc=%d pcc=%d%s%s ports=%d\n", |
| 31 | label, params, |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 32 | 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. Bem | 78698d6 | 2016-01-25 22:44:57 -0300 | [diff] [blame] | 38 | HCS_N_PORTS(params)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | /* Port routing, per EHCI 0.95 Spec, Section 2.2.5 */ |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 40 | if (HCS_PORTROUTED(params)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | int i; |
Geyslan G. Bem | 1cb1d1c | 2016-01-25 22:44:54 -0300 | [diff] [blame] | 42 | char buf[46], tmp[7], byte; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | buf[0] = 0; |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 45 | for (i = 0; i < HCS_N_PORTS(params); i++) { |
Geyslan G. Bem | 0784b4d | 2016-01-25 22:44:55 -0300 | [diff] [blame] | 46 | /* FIXME MIPS won't readb() ... */ |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 47 | byte = readb(&ehci->caps->portroute[(i >> 1)]); |
David Brownell | 53bd6a6 | 2006-08-30 14:50:06 -0700 | [diff] [blame] | 48 | sprintf(tmp, "%d ", |
Geyslan G. Bem | c2fb017 | 2016-01-25 22:44:58 -0300 | [diff] [blame] | 49 | (i & 0x1) ? byte & 0xf : (byte >> 4) & 0xf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | strcat(buf, tmp); |
| 51 | } |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 52 | ehci_dbg(ehci, "%s portroute %s\n", label, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | } |
| 54 | } |
| 55 | #else |
| 56 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 57 | static inline void dbg_hcs_params(struct ehci_hcd *ehci, char *label) {} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | #endif |
| 60 | |
Oliver Neukum | 1c20163 | 2013-11-18 13:23:16 +0100 | [diff] [blame] | 61 | #ifdef CONFIG_DYNAMIC_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Geyslan G. Bem | 0784b4d | 2016-01-25 22:44:55 -0300 | [diff] [blame] | 63 | /* |
| 64 | * check the values in the HCCPARAMS register |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | * (host controller _Capability_ parameters) |
| 66 | * see EHCI Spec, Table 2-5 for each value |
Geyslan G. Bem | 0784b4d | 2016-01-25 22:44:55 -0300 | [diff] [blame] | 67 | */ |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 68 | static void dbg_hcc_params(struct ehci_hcd *ehci, char *label) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | { |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 70 | u32 params = ehci_readl(ehci, &ehci->caps->hcc_params); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 72 | if (HCC_ISOC_CACHE(params)) { |
| 73 | ehci_dbg(ehci, |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 74 | "%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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | } else { |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 80 | ehci_dbg(ehci, |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 81 | "%s hcc_params %04x thresh %d uframes %s%s%s%s%s%s%s\n", |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 82 | label, |
| 83 | params, |
| 84 | HCC_ISOC_THRES(params), |
| 85 | HCC_PGM_FRAMELISTLEN(params) ? "256/512/1024" : "1024", |
| 86 | HCC_CANPARK(params) ? " park" : "", |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 87 | 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 Iida | 855ef45 | 2012-02-17 23:06:47 +0900 | [diff] [blame] | 92 | " 32 periodic list" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | } |
| 94 | } |
| 95 | #else |
| 96 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 97 | static inline void dbg_hcc_params(struct ehci_hcd *ehci, char *label) {} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
| 99 | #endif |
| 100 | |
Oliver Neukum | 1c20163 | 2013-11-18 13:23:16 +0100 | [diff] [blame] | 101 | #ifdef CONFIG_DYNAMIC_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
David Rientjes | 8234509 | 2007-05-11 14:39:44 -0700 | [diff] [blame] | 103 | static void __maybe_unused |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 104 | dbg_qtd(const char *label, struct ehci_hcd *ehci, struct ehci_qtd *qtd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | { |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 106 | 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. Bem | 1cb1d1c | 2016-01-25 22:44:54 -0300 | [diff] [blame] | 110 | hc32_to_cpup(ehci, &qtd->hw_buf[0])); |
| 111 | if (qtd->hw_buf[1]) |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 112 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | } |
| 118 | |
David Rientjes | 8234509 | 2007-05-11 14:39:44 -0700 | [diff] [blame] | 119 | static void __maybe_unused |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 120 | dbg_qh(const char *label, struct ehci_hcd *ehci, struct ehci_qh *qh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | { |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 122 | struct ehci_qh_hw *hw = qh->hw; |
| 123 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 124 | ehci_dbg(ehci, "%s qh %p n%08x info %x %x qtd %x\n", label, |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 125 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | } |
| 128 | |
David Rientjes | 8234509 | 2007-05-11 14:39:44 -0700 | [diff] [blame] | 129 | static void __maybe_unused |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 130 | dbg_itd(const char *label, struct ehci_hcd *ehci, struct ehci_itd *itd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | { |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 132 | ehci_dbg(ehci, "%s [%d] itd %p, next %08x, urb %p\n", |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 133 | label, itd->frame, itd, hc32_to_cpu(ehci, itd->hw_next), |
| 134 | itd->urb); |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 135 | ehci_dbg(ehci, |
David Brownell | 53bd6a6 | 2006-08-30 14:50:06 -0700 | [diff] [blame] | 136 | " trans: %08x %08x %08x %08x %08x %08x %08x %08x\n", |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 137 | 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. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 145 | ehci_dbg(ehci, |
David Brownell | 53bd6a6 | 2006-08-30 14:50:06 -0700 | [diff] [blame] | 146 | " buf: %08x %08x %08x %08x %08x %08x %08x\n", |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 147 | 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. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 154 | ehci_dbg(ehci, " index: %d %d %d %d %d %d %d %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | 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 Rientjes | 8234509 | 2007-05-11 14:39:44 -0700 | [diff] [blame] | 160 | static void __maybe_unused |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 161 | dbg_sitd(const char *label, struct ehci_hcd *ehci, struct ehci_sitd *sitd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | { |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 163 | ehci_dbg(ehci, "%s [%d] sitd %p, next %08x, urb %p\n", |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 164 | label, sitd->frame, sitd, hc32_to_cpu(ehci, sitd->hw_next), |
| 165 | sitd->urb); |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 166 | ehci_dbg(ehci, |
David Brownell | 53bd6a6 | 2006-08-30 14:50:06 -0700 | [diff] [blame] | 167 | " addr %08x sched %04x result %08x buf %08x %08x\n", |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 168 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
David Rientjes | 8234509 | 2007-05-11 14:39:44 -0700 | [diff] [blame] | 175 | static int __maybe_unused |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 176 | dbg_status_buf(char *buf, unsigned len, const char *label, u32 status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | { |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 178 | return scnprintf(buf, len, |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 179 | "%s%sstatus %04x%s%s%s%s%s%s%s%s%s%s%s", |
Geyslan G. Bem | 1cb1d1c | 2016-01-25 22:44:54 -0300 | [diff] [blame] | 180 | label, label[0] ? " " : "", status, |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 181 | (status & STS_PPCE_MASK) ? " PPCE" : "", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | (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. Bem | 78698d6 | 2016-01-25 22:44:57 -0300 | [diff] [blame] | 191 | (status & STS_INT) ? " INT" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } |
| 193 | |
David Rientjes | 8234509 | 2007-05-11 14:39:44 -0700 | [diff] [blame] | 194 | static int __maybe_unused |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 195 | dbg_intr_buf(char *buf, unsigned len, const char *label, u32 enable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | { |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 197 | return scnprintf(buf, len, |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 198 | "%s%sintrenable %02x%s%s%s%s%s%s%s", |
Geyslan G. Bem | 1cb1d1c | 2016-01-25 22:44:54 -0300 | [diff] [blame] | 199 | label, label[0] ? " " : "", enable, |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 200 | (enable & STS_PPCE_MASK) ? " PPCE" : "", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | (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. Bem | 78698d6 | 2016-01-25 22:44:57 -0300 | [diff] [blame] | 206 | (enable & STS_INT) ? " INT" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } |
| 208 | |
Geyslan G. Bem | 1cb1d1c | 2016-01-25 22:44:54 -0300 | [diff] [blame] | 209 | static const char *const fls_strings[] = { "1024", "512", "256", "??" }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
| 211 | static int |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 212 | dbg_command_buf(char *buf, unsigned len, const char *label, u32 command) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | { |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 214 | return scnprintf(buf, len, |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 215 | "%s%scommand %07x %s%s%s%s%s%s=%d ithresh=%d%s%s%s%s " |
| 216 | "period=%s%s %s", |
Geyslan G. Bem | 1cb1d1c | 2016-01-25 22:44:54 -0300 | [diff] [blame] | 217 | label, label[0] ? " " : "", command, |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 218 | (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. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 224 | CMD_PARK_CNT(command), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | (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. Bem | 1cb1d1c | 2016-01-25 22:44:54 -0300 | [diff] [blame] | 230 | fls_strings[(command >> 2) & 0x3], |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | (command & CMD_RESET) ? " Reset" : "", |
Geyslan G. Bem | 78698d6 | 2016-01-25 22:44:57 -0300 | [diff] [blame] | 232 | (command & CMD_RUN) ? "RUN" : "HALT"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | static int |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 236 | dbg_port_buf(char *buf, unsigned len, const char *label, int port, u32 status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | { |
| 238 | char *sig; |
| 239 | |
| 240 | /* signaling state */ |
| 241 | switch (status & (3 << 10)) { |
Geyslan G. Bem | 5bb95ec | 2016-01-25 22:44:56 -0300 | [diff] [blame] | 242 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | } |
| 255 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 256 | return scnprintf(buf, len, |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 257 | "%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. Bem | 1cb1d1c | 2016-01-25 22:44:54 -0300 | [diff] [blame] | 259 | label, label[0] ? " " : "", port, status, |
Geyslan G. Bem | c2fb017 | 2016-01-25 22:44:58 -0300 | [diff] [blame] | 260 | status >> 25, /*device address */ |
| 261 | (status & PORT_SSTS) >> 23 == PORTSC_SUSPEND_STS_ACK ? |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 262 | " ACK" : "", |
Geyslan G. Bem | c2fb017 | 2016-01-25 22:44:58 -0300 | [diff] [blame] | 263 | (status & PORT_SSTS) >> 23 == PORTSC_SUSPEND_STS_NYET ? |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 264 | " NYET" : "", |
Geyslan G. Bem | c2fb017 | 2016-01-25 22:44:58 -0300 | [diff] [blame] | 265 | (status & PORT_SSTS) >> 23 == PORTSC_SUSPEND_STS_STALL ? |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 266 | " STALL" : "", |
Geyslan G. Bem | c2fb017 | 2016-01-25 22:44:58 -0300 | [diff] [blame] | 267 | (status & PORT_SSTS) >> 23 == PORTSC_SUSPEND_STS_ERR ? |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 268 | " ERR" : "", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | (status & PORT_POWER) ? " POWER" : "", |
| 270 | (status & PORT_OWNER) ? " OWNER" : "", |
| 271 | sig, |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 272 | (status & PORT_LPM) ? " LPM" : "", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | (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 Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 281 | (status & PORT_CONNECT) ? " CONNECT" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | #else |
David Rientjes | 8234509 | 2007-05-11 14:39:44 -0700 | [diff] [blame] | 285 | static inline void __maybe_unused |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 286 | dbg_qh(char *label, struct ehci_hcd *ehci, struct ehci_qh *qh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | {} |
| 288 | |
David Rientjes | 8234509 | 2007-05-11 14:39:44 -0700 | [diff] [blame] | 289 | static inline int __maybe_unused |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 290 | dbg_status_buf(char *buf, unsigned len, const char *label, u32 status) |
Geyslan G. Bem | c768ffb | 2016-01-25 22:45:00 -0300 | [diff] [blame] | 291 | { |
| 292 | return 0; |
| 293 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
David Rientjes | 8234509 | 2007-05-11 14:39:44 -0700 | [diff] [blame] | 295 | static inline int __maybe_unused |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 296 | dbg_command_buf(char *buf, unsigned len, const char *label, u32 command) |
Geyslan G. Bem | c768ffb | 2016-01-25 22:45:00 -0300 | [diff] [blame] | 297 | { |
| 298 | return 0; |
| 299 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
David Rientjes | 8234509 | 2007-05-11 14:39:44 -0700 | [diff] [blame] | 301 | static inline int __maybe_unused |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 302 | dbg_intr_buf(char *buf, unsigned len, const char *label, u32 enable) |
Geyslan G. Bem | c768ffb | 2016-01-25 22:45:00 -0300 | [diff] [blame] | 303 | { |
| 304 | return 0; |
| 305 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
David Rientjes | 8234509 | 2007-05-11 14:39:44 -0700 | [diff] [blame] | 307 | static inline int __maybe_unused |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 308 | dbg_port_buf(char *buf, unsigned len, const char *label, int port, u32 status) |
Geyslan G. Bem | c768ffb | 2016-01-25 22:45:00 -0300 | [diff] [blame] | 309 | { |
| 310 | return 0; |
| 311 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
Oliver Neukum | 1c20163 | 2013-11-18 13:23:16 +0100 | [diff] [blame] | 313 | #endif /* CONFIG_DYNAMIC_DEBUG */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
Geyslan G. Bem | 1f8e5af | 2016-01-25 22:45:02 -0300 | [diff] [blame] | 315 | static inline void |
| 316 | dbg_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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Geyslan G. Bem | 1f8e5af | 2016-01-25 22:45:02 -0300 | [diff] [blame] | 324 | static inline void |
| 325 | dbg_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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | } |
| 332 | |
Geyslan G. Bem | 1f8e5af | 2016-01-25 22:45:02 -0300 | [diff] [blame] | 333 | static inline void |
| 334 | dbg_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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | /*-------------------------------------------------------------------------*/ |
| 343 | |
| 344 | #ifdef STUB_DEBUG_FILES |
| 345 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 346 | static inline void create_debug_files(struct ehci_hcd *bus) { } |
| 347 | static inline void remove_debug_files(struct ehci_hcd *bus) { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
| 349 | #else |
| 350 | |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 351 | /* troubleshooting help: expose state in debugfs */ |
| 352 | |
| 353 | static int debug_async_open(struct inode *, struct file *); |
Alan Stern | d0ce5c6 | 2013-10-11 11:29:13 -0400 | [diff] [blame] | 354 | static int debug_bandwidth_open(struct inode *, struct file *); |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 355 | static int debug_periodic_open(struct inode *, struct file *); |
| 356 | static int debug_registers_open(struct inode *, struct file *); |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 357 | |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 358 | static ssize_t debug_output(struct file*, char __user*, size_t, loff_t*); |
| 359 | static int debug_close(struct inode *, struct file *); |
| 360 | |
| 361 | static 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 Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 366 | .llseek = default_llseek, |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 367 | }; |
Geyslan G. Bem | e166631 | 2016-01-25 22:45:01 -0300 | [diff] [blame] | 368 | |
Alan Stern | d0ce5c6 | 2013-10-11 11:29:13 -0400 | [diff] [blame] | 369 | static 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. Bem | e166631 | 2016-01-25 22:45:01 -0300 | [diff] [blame] | 376 | |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 377 | static 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 Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 382 | .llseek = default_llseek, |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 383 | }; |
Geyslan G. Bem | e166631 | 2016-01-25 22:45:01 -0300 | [diff] [blame] | 384 | |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 385 | static 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 Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 390 | .llseek = default_llseek, |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 391 | }; |
| 392 | |
| 393 | static struct dentry *ehci_debug_root; |
| 394 | |
| 395 | struct 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 Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 400 | char *output_buf; |
| 401 | size_t alloc_size; |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 402 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
Geyslan G. Bem | 1f8e5af | 2016-01-25 22:45:02 -0300 | [diff] [blame] | 404 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 418 | static inline char token_mark(struct ehci_hcd *ehci, __hc32 token) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | { |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 420 | __u32 v = hc32_to_cpu(ehci, token); |
| 421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | if (v & QTD_STS_ACTIVE) |
| 423 | return '*'; |
| 424 | if (v & QTD_STS_HALT) |
| 425 | return '-'; |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 426 | if (!IS_SHORT_READ(v)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | return ' '; |
| 428 | /* tries to advance through hw_alt_next */ |
| 429 | return '/'; |
| 430 | } |
| 431 | |
Geyslan G. Bem | c768ffb | 2016-01-25 22:45:00 -0300 | [diff] [blame] | 432 | static void qh_lines(struct ehci_hcd *ehci, struct ehci_qh *qh, |
| 433 | char **nextp, unsigned *sizep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | { |
| 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 Viro | fd05e72 | 2008-04-28 07:00:16 +0100 | [diff] [blame] | 443 | __le32 list_end = EHCI_LIST_END(ehci); |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 444 | struct ehci_qh_hw *hw = qh->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 446 | if (hw->hw_qtd_next == list_end) /* NEC does this */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | mark = '@'; |
| 448 | else |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 449 | mark = token_mark(ehci, hw->hw_token); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | if (mark == '/') { /* qh_alt_next controls qh advance? */ |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 451 | if ((hw->hw_alt_next & QTD_MASK(ehci)) |
| 452 | == ehci->async->hw->hw_alt_next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | mark = '#'; /* blocked */ |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 454 | else if (hw->hw_alt_next == list_end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | mark = '.'; /* use hw_qtd_next */ |
| 456 | /* else alt_next points to some other qtd */ |
| 457 | } |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 458 | scratch = hc32_to_cpup(ehci, &hw->hw_info1); |
| 459 | hw_curr = (mark == '*') ? hc32_to_cpup(ehci, &hw->hw_current) : 0; |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 460 | temp = scnprintf(next, size, |
Alan Stern | 8ee10d6 | 2015-11-20 13:53:45 -0500 | [diff] [blame] | 461 | "qh/%p dev%d %cs ep%d %08x %08x (%08x%c %s nak%d)" |
| 462 | " [cur %08x next %08x buf[0] %08x]", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | qh, scratch & 0x007f, |
| 464 | speed_char (scratch), |
| 465 | (scratch >> 8) & 0x000f, |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 466 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | ? "data1" : "data0", |
Alan Stern | 8ee10d6 | 2015-11-20 13:53:45 -0500 | [diff] [blame] | 470 | (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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | size -= temp; |
| 475 | next += temp; |
| 476 | |
| 477 | /* hc may be modifying the list as we read it ... */ |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 478 | list_for_each(entry, &qh->qtd_list) { |
Geyslan G. Bem | 5bb95ec | 2016-01-25 22:44:56 -0300 | [diff] [blame] | 479 | char *type; |
| 480 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 481 | td = list_entry(entry, struct ehci_qtd, qtd_list); |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 482 | scratch = hc32_to_cpup(ehci, &td->hw_token); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | mark = ' '; |
| 484 | if (hw_curr == td->qtd_dma) |
| 485 | mark = '*'; |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 486 | else if (hw->hw_qtd_next == cpu_to_hc32(ehci, td->qtd_dma)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | mark = '+'; |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 488 | else if (QTD_LENGTH(scratch)) { |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 489 | if (td->hw_alt_next == ehci->async->hw->hw_alt_next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | mark = '#'; |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 491 | else if (td->hw_alt_next != list_end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | mark = '/'; |
| 493 | } |
Geyslan G. Bem | 5bb95ec | 2016-01-25 22:44:56 -0300 | [diff] [blame] | 494 | 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. Bem | a535597 | 2016-01-25 22:44:59 -0300 | [diff] [blame] | 508 | temp = scnprintf(next, size, |
Alan Stern | 8ee10d6 | 2015-11-20 13:53:45 -0500 | [diff] [blame] | 509 | "\n\t%p%c%s len=%d %08x urb %p" |
| 510 | " [td %08x buf[0] %08x]", |
Geyslan G. Bem | 5bb95ec | 2016-01-25 22:44:56 -0300 | [diff] [blame] | 511 | td, mark, type, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | (scratch >> 16) & 0x7fff, |
| 513 | scratch, |
Alan Stern | 8ee10d6 | 2015-11-20 13:53:45 -0500 | [diff] [blame] | 514 | td->urb, |
| 515 | (u32) td->qtd_dma, |
| 516 | hc32_to_cpup(ehci, &td->hw_buf[0])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | size -= temp; |
| 518 | next += temp; |
| 519 | if (temp == size) |
| 520 | goto done; |
| 521 | } |
| 522 | |
Geyslan G. Bem | a535597 | 2016-01-25 22:44:59 -0300 | [diff] [blame] | 523 | temp = scnprintf(next, size, "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | size -= temp; |
| 525 | next += temp; |
| 526 | |
| 527 | done: |
| 528 | *sizep = size; |
| 529 | *nextp = next; |
| 530 | } |
| 531 | |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 532 | static ssize_t fill_async_buffer(struct debug_buffer *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | 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 Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 541 | hcd = bus_to_hcd(buf->bus); |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 542 | ehci = hcd_to_ehci(hcd); |
Ming Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 543 | next = buf->output_buf; |
| 544 | size = buf->alloc_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 546 | *next = 0; |
| 547 | |
Geyslan G. Bem | 0784b4d | 2016-01-25 22:44:55 -0300 | [diff] [blame] | 548 | /* |
| 549 | * dumps a snapshot of the async schedule. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | * usually empty except for long-term bulk reads, or head. |
| 551 | * one QH per line, and TDs we know about |
| 552 | */ |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 553 | spin_lock_irqsave(&ehci->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | for (qh = ehci->async->qh_next.qh; size > 0 && qh; qh = qh->qh_next.qh) |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 555 | qh_lines(ehci, qh, &next, &size); |
Alan Stern | 6e01875 | 2013-03-22 13:31:45 -0400 | [diff] [blame] | 556 | if (!list_empty(&ehci->async_unlink) && size > 0) { |
Alan Stern | 99ac5b1 | 2012-07-11 11:21:38 -0400 | [diff] [blame] | 557 | temp = scnprintf(next, size, "\nunlink =\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | size -= temp; |
| 559 | next += temp; |
| 560 | |
Alan Stern | 6e01875 | 2013-03-22 13:31:45 -0400 | [diff] [blame] | 561 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | } |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 567 | spin_unlock_irqrestore(&ehci->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | |
Ming Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 569 | return strlen(buf->output_buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | |
Alan Stern | d0ce5c6 | 2013-10-11 11:29:13 -0400 | [diff] [blame] | 572 | static ssize_t fill_bandwidth_buffer(struct debug_buffer *buf) |
| 573 | { |
| 574 | struct ehci_hcd *ehci; |
Alan Stern | b35c500 | 2013-10-11 22:16:21 -0400 | [diff] [blame] | 575 | struct ehci_tt *tt; |
| 576 | struct ehci_per_sched *ps; |
Alan Stern | d0ce5c6 | 2013-10-11 11:29:13 -0400 | [diff] [blame] | 577 | unsigned temp, size; |
| 578 | char *next; |
| 579 | unsigned i; |
| 580 | u8 *bw; |
Alan Stern | b35c500 | 2013-10-11 22:16:21 -0400 | [diff] [blame] | 581 | u16 *bf; |
| 582 | u8 budget[EHCI_BANDWIDTH_SIZE]; |
Alan Stern | d0ce5c6 | 2013-10-11 11:29:13 -0400 | [diff] [blame] | 583 | |
| 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 Stern | b35c500 | 2013-10-11 22:16:21 -0400 | [diff] [blame] | 606 | |
| 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 Stern | d0ce5c6 | 2013-10-11 11:29:13 -0400 | [diff] [blame] | 650 | spin_unlock_irq(&ehci->lock); |
| 651 | |
| 652 | return next - buf->output_buf; |
| 653 | } |
| 654 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | #define DBG_SCHED_LIMIT 64 |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 656 | static ssize_t fill_periodic_buffer(struct debug_buffer *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | 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 Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 665 | __hc32 tag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | |
Greg Kroah-Hartman | 911fdb6 | 2015-04-30 11:32:50 +0200 | [diff] [blame] | 667 | seen = kmalloc(DBG_SCHED_LIMIT * sizeof *seen, GFP_ATOMIC); |
| 668 | if (!seen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | return 0; |
| 670 | seen_count = 0; |
| 671 | |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 672 | hcd = bus_to_hcd(buf->bus); |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 673 | ehci = hcd_to_ehci(hcd); |
Ming Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 674 | next = buf->output_buf; |
| 675 | size = buf->alloc_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 677 | temp = scnprintf(next, size, "size = %d\n", ehci->periodic_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | size -= temp; |
| 679 | next += temp; |
| 680 | |
Geyslan G. Bem | 0784b4d | 2016-01-25 22:44:55 -0300 | [diff] [blame] | 681 | /* |
| 682 | * dump a snapshot of the periodic schedule. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | * iso changes, interrupt usually doesn't. |
| 684 | */ |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 685 | spin_lock_irqsave(&ehci->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | for (i = 0; i < ehci->periodic_size; i++) { |
Geyslan G. Bem | 1cb1d1c | 2016-01-25 22:44:54 -0300 | [diff] [blame] | 687 | p = ehci->pshadow[i]; |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 688 | if (likely(!p.ptr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | continue; |
Geyslan G. Bem | 1cb1d1c | 2016-01-25 22:44:54 -0300 | [diff] [blame] | 690 | tag = Q_NEXT_TYPE(ehci, ehci->periodic[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 692 | temp = scnprintf(next, size, "%4d: ", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | size -= temp; |
| 694 | next += temp; |
| 695 | |
| 696 | do { |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 697 | struct ehci_qh_hw *hw; |
| 698 | |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 699 | switch (hc32_to_cpu(ehci, tag)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | case Q_TYPE_QH: |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 701 | hw = p.qh->hw; |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 702 | temp = scnprintf(next, size, " qh%d-%04x/%p", |
Alan Stern | ffa0248 | 2013-10-11 11:29:03 -0400 | [diff] [blame] | 703 | p.qh->ps.period, |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 704 | hc32_to_cpup(ehci, |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 705 | &hw->hw_info2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | /* uframe masks */ |
David Brownell | 7dedacf | 2005-08-04 18:06:41 -0700 | [diff] [blame] | 707 | & (QH_CMASK | QH_SMASK), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | 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. Bem | 1cb1d1c | 2016-01-25 22:44:54 -0300 | [diff] [blame] | 713 | if (seen[temp].ptr != p.ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | continue; |
Ming Lei | 3c4bb71 | 2008-09-18 23:06:38 +0800 | [diff] [blame] | 715 | if (p.qh->qh_next.ptr) { |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 716 | temp = scnprintf(next, size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | " ..."); |
Ming Lei | 3c4bb71 | 2008-09-18 23:06:38 +0800 | [diff] [blame] | 718 | size -= temp; |
| 719 | next += temp; |
| 720 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | break; |
| 722 | } |
| 723 | /* show more info the first time around */ |
Ming Lei | 3c4bb71 | 2008-09-18 23:06:38 +0800 | [diff] [blame] | 724 | if (temp == seen_count) { |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 725 | u32 scratch = hc32_to_cpup(ehci, |
Alek Du | 3807e26 | 2009-07-14 07:23:29 +0800 | [diff] [blame] | 726 | &hw->hw_info1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | struct ehci_qtd *qtd; |
| 728 | char *type = ""; |
| 729 | |
| 730 | /* count tds, get ep direction */ |
| 731 | temp = 0; |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 732 | list_for_each_entry(qtd, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | &p.qh->qtd_list, |
| 734 | qtd_list) { |
| 735 | temp++; |
Geyslan G. Bem | 5bb95ec | 2016-01-25 22:44:56 -0300 | [diff] [blame] | 736 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | } |
| 746 | } |
| 747 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 748 | temp = scnprintf(next, size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | " (%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 Stern | ffa0248 | 2013-10-11 11:29:03 -0400 | [diff] [blame] | 754 | p.qh->ps.usecs, |
| 755 | p.qh->ps.c_usecs, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | temp, |
| 757 | 0x7ff & (scratch >> 16)); |
| 758 | |
| 759 | if (seen_count < DBG_SCHED_LIMIT) |
Geyslan G. Bem | 1cb1d1c | 2016-01-25 22:44:54 -0300 | [diff] [blame] | 760 | seen[seen_count++].qh = p.qh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | } else |
| 762 | temp = 0; |
Alan Stern | 17dcfc9 | 2012-09-19 17:00:55 -0400 | [diff] [blame] | 763 | tag = Q_NEXT_TYPE(ehci, hw->hw_next); |
| 764 | p = p.qh->qh_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | break; |
| 766 | case Q_TYPE_FSTN: |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 767 | temp = scnprintf(next, size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | " fstn-%8x/%p", p.fstn->hw_prev, |
| 769 | p.fstn); |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 770 | tag = Q_NEXT_TYPE(ehci, p.fstn->hw_next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | p = p.fstn->fstn_next; |
| 772 | break; |
| 773 | case Q_TYPE_ITD: |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 774 | temp = scnprintf(next, size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | " itd/%p", p.itd); |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 776 | tag = Q_NEXT_TYPE(ehci, p.itd->hw_next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | p = p.itd->itd_next; |
| 778 | break; |
| 779 | case Q_TYPE_SITD: |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 780 | temp = scnprintf(next, size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | " sitd%d-%04x/%p", |
Alan Stern | ffa0248 | 2013-10-11 11:29:03 -0400 | [diff] [blame] | 782 | p.sitd->stream->ps.period, |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 783 | hc32_to_cpup(ehci, &p.sitd->hw_uframe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | & 0x0000ffff, |
| 785 | p.sitd); |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 786 | tag = Q_NEXT_TYPE(ehci, p.sitd->hw_next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | p = p.sitd->sitd_next; |
| 788 | break; |
| 789 | } |
| 790 | size -= temp; |
| 791 | next += temp; |
| 792 | } while (p.ptr); |
| 793 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 794 | temp = scnprintf(next, size, "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | size -= temp; |
| 796 | next += temp; |
| 797 | } |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 798 | spin_unlock_irqrestore(&ehci->lock, flags); |
| 799 | kfree(seen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | |
Ming Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 801 | return buf->alloc_size - size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | #undef DBG_SCHED_LIMIT |
| 804 | |
Alan Stern | e879990 | 2011-08-18 16:31:30 -0400 | [diff] [blame] | 805 | static 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 Stern | c0c53db | 2012-07-11 11:21:48 -0400 | [diff] [blame] | 814 | case EHCI_RH_STOPPING: |
| 815 | return "stopping"; |
Alan Stern | e879990 | 2011-08-18 16:31:30 -0400 | [diff] [blame] | 816 | } |
| 817 | return "?"; |
| 818 | } |
| 819 | |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 820 | static ssize_t fill_registers_buffer(struct debug_buffer *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | struct usb_hcd *hcd; |
| 823 | struct ehci_hcd *ehci; |
| 824 | unsigned long flags; |
| 825 | unsigned temp, size, i; |
Geyslan G. Bem | 1cb1d1c | 2016-01-25 22:44:54 -0300 | [diff] [blame] | 826 | char *next, scratch[80]; |
| 827 | static char fmt[] = "%*s\n"; |
| 828 | static char label[] = ""; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 830 | hcd = bus_to_hcd(buf->bus); |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 831 | ehci = hcd_to_ehci(hcd); |
Ming Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 832 | next = buf->output_buf; |
| 833 | size = buf->alloc_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 835 | spin_lock_irqsave(&ehci->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 837 | if (!HCD_HW_ACCESSIBLE(hcd)) { |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 838 | size = scnprintf(next, size, |
Alan Stern | 2b70f07 | 2008-10-02 11:47:15 -0400 | [diff] [blame] | 839 | "bus %s, device %s\n" |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 840 | "%s\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | "SUSPENDED (no register access)\n", |
| 842 | hcd->self.controller->bus->name, |
Kay Sievers | 7071a3c | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 843 | dev_name(hcd->self.controller), |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 844 | hcd->product_desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | goto done; |
| 846 | } |
| 847 | |
| 848 | /* Capability Registers */ |
Jan Andersson | c430131 | 2011-05-03 20:11:57 +0200 | [diff] [blame] | 849 | i = HC_VERSION(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase)); |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 850 | temp = scnprintf(next, size, |
Alan Stern | 2b70f07 | 2008-10-02 11:47:15 -0400 | [diff] [blame] | 851 | "bus %s, device %s\n" |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 852 | "%s\n" |
Alan Stern | e879990 | 2011-08-18 16:31:30 -0400 | [diff] [blame] | 853 | "EHCI %x.%02x, rh state %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | hcd->self.controller->bus->name, |
Kay Sievers | 7071a3c | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 855 | dev_name(hcd->self.controller), |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 856 | hcd->product_desc, |
Alan Stern | e879990 | 2011-08-18 16:31:30 -0400 | [diff] [blame] | 857 | i >> 8, i & 0x0ff, rh_state_string(ehci)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | size -= temp; |
| 859 | next += temp; |
| 860 | |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 861 | #ifdef CONFIG_PCI |
| 862 | /* EHCI 0.96 and later may have "extended capabilities" */ |
Yijing Wang | e10e6f4 | 2013-12-05 19:21:32 +0800 | [diff] [blame] | 863 | if (dev_is_pci(hcd->self.controller)) { |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 864 | struct pci_dev *pdev; |
| 865 | u32 offset, cap, cap2; |
Geyslan G. Bem | c2fb017 | 2016-01-25 22:44:58 -0300 | [diff] [blame] | 866 | unsigned count = 256 / 4; |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 867 | |
| 868 | pdev = to_pci_dev(ehci_to_hcd(ehci)->self.controller); |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 869 | offset = HCC_EXT_CAPS(ehci_readl(ehci, |
| 870 | &ehci->caps->hcc_params)); |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 871 | while (offset && count--) { |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 872 | pci_read_config_dword(pdev, offset, &cap); |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 873 | switch (cap & 0xff) { |
| 874 | case 1: |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 875 | temp = scnprintf(next, size, |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 876 | "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. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 883 | pci_read_config_dword(pdev, offset, &cap2); |
| 884 | temp = scnprintf(next, size, |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 885 | "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. Bem | 0784b4d | 2016-01-25 22:44:55 -0300 | [diff] [blame] | 900 | /* FIXME interpret both types of params */ |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 901 | i = ehci_readl(ehci, &ehci->caps->hcs_params); |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 902 | temp = scnprintf(next, size, "structural params 0x%08x\n", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | size -= temp; |
| 904 | next += temp; |
| 905 | |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 906 | i = ehci_readl(ehci, &ehci->caps->hcc_params); |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 907 | temp = scnprintf(next, size, "capability params 0x%08x\n", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | size -= temp; |
| 909 | next += temp; |
| 910 | |
| 911 | /* Operational Registers */ |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 912 | temp = dbg_status_buf(scratch, sizeof(scratch), label, |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 913 | ehci_readl(ehci, &ehci->regs->status)); |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 914 | temp = scnprintf(next, size, fmt, temp, scratch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | size -= temp; |
| 916 | next += temp; |
| 917 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 918 | temp = dbg_command_buf(scratch, sizeof(scratch), label, |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 919 | ehci_readl(ehci, &ehci->regs->command)); |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 920 | temp = scnprintf(next, size, fmt, temp, scratch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | size -= temp; |
| 922 | next += temp; |
| 923 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 924 | temp = dbg_intr_buf(scratch, sizeof(scratch), label, |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 925 | ehci_readl(ehci, &ehci->regs->intr_enable)); |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 926 | temp = scnprintf(next, size, fmt, temp, scratch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | size -= temp; |
| 928 | next += temp; |
| 929 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 930 | temp = scnprintf(next, size, "uframe %04x\n", |
Alan Stern | 68aa95d | 2011-10-12 10:39:14 -0400 | [diff] [blame] | 931 | ehci_read_frame_index(ehci)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | size -= temp; |
| 933 | next += temp; |
| 934 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 935 | for (i = 1; i <= HCS_N_PORTS(ehci->hcs_params); i++) { |
| 936 | temp = dbg_port_buf(scratch, sizeof(scratch), label, i, |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 937 | ehci_readl(ehci, |
| 938 | &ehci->regs->port_status[i - 1])); |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 939 | temp = scnprintf(next, size, fmt, temp, scratch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | size -= temp; |
| 941 | next += temp; |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 942 | if (i == HCS_DEBUG_PORT(ehci->hcs_params) && ehci->debug) { |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 943 | temp = scnprintf(next, size, |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 944 | " debug control %08x\n", |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 945 | ehci_readl(ehci, |
| 946 | &ehci->debug->control)); |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 947 | size -= temp; |
| 948 | next += temp; |
| 949 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | } |
| 951 | |
Alan Stern | 6e01875 | 2013-03-22 13:31:45 -0400 | [diff] [blame] | 952 | if (!list_empty(&ehci->async_unlink)) { |
Alan Stern | 99ac5b1 | 2012-07-11 11:21:38 -0400 | [diff] [blame] | 953 | temp = scnprintf(next, size, "async unlink qh %p\n", |
Alan Stern | 6e01875 | 2013-03-22 13:31:45 -0400 | [diff] [blame] | 954 | list_first_entry(&ehci->async_unlink, |
| 955 | struct ehci_qh, unlink_node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | size -= temp; |
| 957 | next += temp; |
| 958 | } |
| 959 | |
| 960 | #ifdef EHCI_STATS |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 961 | temp = scnprintf(next, size, |
Alan Stern | 99ac5b1 | 2012-07-11 11:21:38 -0400 | [diff] [blame] | 962 | "irq normal %ld err %ld iaa %ld (lost %ld)\n", |
| 963 | ehci->stats.normal, ehci->stats.error, ehci->stats.iaa, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | ehci->stats.lost_iaa); |
| 965 | size -= temp; |
| 966 | next += temp; |
| 967 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 968 | temp = scnprintf(next, size, "complete %ld unlink %ld\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | ehci->stats.complete, ehci->stats.unlink); |
| 970 | size -= temp; |
| 971 | next += temp; |
| 972 | #endif |
| 973 | |
| 974 | done: |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 975 | spin_unlock_irqrestore(&ehci->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | |
Ming Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 977 | return buf->alloc_size - size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | } |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 979 | |
| 980 | static struct debug_buffer *alloc_buffer(struct usb_bus *bus, |
Geyslan G. Bem | c768ffb | 2016-01-25 22:45:00 -0300 | [diff] [blame] | 981 | ssize_t (*fill_func)(struct debug_buffer *)) |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 982 | { |
| 983 | struct debug_buffer *buf; |
| 984 | |
Geyslan G. Bem | 12ef7dd | 2016-01-25 22:45:05 -0300 | [diff] [blame^] | 985 | buf = kzalloc(sizeof(*buf), GFP_KERNEL); |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 986 | |
| 987 | if (buf) { |
| 988 | buf->bus = bus; |
| 989 | buf->fill_func = fill_func; |
| 990 | mutex_init(&buf->mutex); |
Ming Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 991 | buf->alloc_size = PAGE_SIZE; |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 992 | } |
| 993 | |
| 994 | return buf; |
| 995 | } |
| 996 | |
| 997 | static int fill_buffer(struct debug_buffer *buf) |
| 998 | { |
| 999 | int ret = 0; |
| 1000 | |
Ming Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 1001 | if (!buf->output_buf) |
Jesper Juhl | 73f35c6 | 2010-11-09 00:10:52 +0100 | [diff] [blame] | 1002 | buf->output_buf = vmalloc(buf->alloc_size); |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1003 | |
Ming Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 1004 | if (!buf->output_buf) { |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1005 | 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 | |
| 1016 | out: |
| 1017 | return ret; |
| 1018 | } |
| 1019 | |
| 1020 | static ssize_t debug_output(struct file *file, char __user *user_buf, |
Geyslan G. Bem | c768ffb | 2016-01-25 22:45:00 -0300 | [diff] [blame] | 1021 | size_t len, loff_t *offset) |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1022 | { |
| 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 Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 1037 | buf->output_buf, buf->count); |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1038 | |
| 1039 | out: |
| 1040 | return ret; |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1041 | } |
| 1042 | |
| 1043 | static int debug_close(struct inode *inode, struct file *file) |
| 1044 | { |
| 1045 | struct debug_buffer *buf = file->private_data; |
| 1046 | |
| 1047 | if (buf) { |
Figo.zhang | f8086a0 | 2009-06-06 20:31:49 +0800 | [diff] [blame] | 1048 | vfree(buf->output_buf); |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1049 | kfree(buf); |
| 1050 | } |
| 1051 | |
| 1052 | return 0; |
| 1053 | } |
Alan Stern | d0ce5c6 | 2013-10-11 11:29:13 -0400 | [diff] [blame] | 1054 | |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1055 | static 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 Stern | d0ce5c6 | 2013-10-11 11:29:13 -0400 | [diff] [blame] | 1062 | static 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 Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1070 | static int debug_periodic_open(struct inode *inode, struct file *file) |
| 1071 | { |
Ming Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 1072 | struct debug_buffer *buf; |
Geyslan G. Bem | 8d587d6 | 2016-01-25 22:45:03 -0300 | [diff] [blame] | 1073 | |
Ming Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 1074 | buf = alloc_buffer(inode->i_private, fill_periodic_buffer); |
| 1075 | if (!buf) |
| 1076 | return -ENOMEM; |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1077 | |
Geyslan G. Bem | c2fb017 | 2016-01-25 22:44:58 -0300 | [diff] [blame] | 1078 | buf->alloc_size = (sizeof(void *) == 4 ? 6 : 8) * PAGE_SIZE; |
Ming Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 1079 | file->private_data = buf; |
| 1080 | return 0; |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1081 | } |
| 1082 | |
| 1083 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 1091 | static inline void create_debug_files(struct ehci_hcd *ehci) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | { |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1093 | struct usb_bus *bus = &ehci_to_hcd(ehci)->self; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1095 | ehci->debug_dir = debugfs_create_dir(bus->bus_name, ehci_debug_root); |
| 1096 | if (!ehci->debug_dir) |
Ming Lei | 185c9bc | 2010-07-28 22:33:28 +0800 | [diff] [blame] | 1097 | return; |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1098 | |
Ming Lei | 185c9bc | 2010-07-28 22:33:28 +0800 | [diff] [blame] | 1099 | if (!debugfs_create_file("async", S_IRUGO, ehci->debug_dir, bus, |
| 1100 | &debug_async_fops)) |
| 1101 | goto file_error; |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1102 | |
Alan Stern | d0ce5c6 | 2013-10-11 11:29:13 -0400 | [diff] [blame] | 1103 | if (!debugfs_create_file("bandwidth", S_IRUGO, ehci->debug_dir, bus, |
| 1104 | &debug_bandwidth_fops)) |
| 1105 | goto file_error; |
| 1106 | |
Ming Lei | 185c9bc | 2010-07-28 22:33:28 +0800 | [diff] [blame] | 1107 | if (!debugfs_create_file("periodic", S_IRUGO, ehci->debug_dir, bus, |
| 1108 | &debug_periodic_fops)) |
| 1109 | goto file_error; |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1110 | |
Ming Lei | 185c9bc | 2010-07-28 22:33:28 +0800 | [diff] [blame] | 1111 | if (!debugfs_create_file("registers", S_IRUGO, ehci->debug_dir, bus, |
| 1112 | &debug_registers_fops)) |
| 1113 | goto file_error; |
Alek Du | aa4d834 | 2010-06-04 15:47:54 +0800 | [diff] [blame] | 1114 | |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1115 | return; |
| 1116 | |
Ming Lei | 185c9bc | 2010-07-28 22:33:28 +0800 | [diff] [blame] | 1117 | file_error: |
| 1118 | debugfs_remove_recursive(ehci->debug_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | } |
| 1120 | |
Geyslan G. Bem | 668ab0d | 2016-01-25 22:44:53 -0300 | [diff] [blame] | 1121 | static inline void remove_debug_files(struct ehci_hcd *ehci) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | { |
Ming Lei | 185c9bc | 2010-07-28 22:33:28 +0800 | [diff] [blame] | 1123 | debugfs_remove_recursive(ehci->debug_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | } |
| 1125 | |
| 1126 | #endif /* STUB_DEBUG_FILES */ |