blob: 9baabed87d61b84eb7febb5753d0b342d7724e48 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Felipe Balbi72246da2011-08-19 18:10:58 +03002/**
3 * debug.h - DesignWare USB3 DRD Controller Debug Header
4 *
5 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
Felipe Balbi72246da2011-08-19 18:10:58 +03006 *
7 * Authors: Felipe Balbi <balbi@ti.com>,
8 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Felipe Balbi72246da2011-08-19 18:10:58 +03009 */
10
Felipe Balbi80977dc2014-08-19 16:37:22 -050011#ifndef __DWC3_DEBUG_H
12#define __DWC3_DEBUG_H
13
Felipe Balbi72246da2011-08-19 18:10:58 +030014#include "core.h"
15
Felipe Balbi80977dc2014-08-19 16:37:22 -050016/**
17 * dwc3_gadget_ep_cmd_string - returns endpoint command string
18 * @cmd: command code
19 */
20static inline const char *
21dwc3_gadget_ep_cmd_string(u8 cmd)
22{
23 switch (cmd) {
24 case DWC3_DEPCMD_DEPSTARTCFG:
25 return "Start New Configuration";
26 case DWC3_DEPCMD_ENDTRANSFER:
27 return "End Transfer";
28 case DWC3_DEPCMD_UPDATETRANSFER:
29 return "Update Transfer";
30 case DWC3_DEPCMD_STARTTRANSFER:
31 return "Start Transfer";
32 case DWC3_DEPCMD_CLEARSTALL:
33 return "Clear Stall";
34 case DWC3_DEPCMD_SETSTALL:
35 return "Set Stall";
36 case DWC3_DEPCMD_GETEPSTATE:
37 return "Get Endpoint State";
38 case DWC3_DEPCMD_SETTRANSFRESOURCE:
39 return "Set Endpoint Transfer Resource";
40 case DWC3_DEPCMD_SETEPCONFIG:
41 return "Set Endpoint Configuration";
42 default:
43 return "UNKNOWN command";
44 }
45}
46
47/**
48 * dwc3_gadget_generic_cmd_string - returns generic command string
49 * @cmd: command code
50 */
51static inline const char *
52dwc3_gadget_generic_cmd_string(u8 cmd)
53{
54 switch (cmd) {
55 case DWC3_DGCMD_SET_LMP:
56 return "Set LMP";
57 case DWC3_DGCMD_SET_PERIODIC_PAR:
58 return "Set Periodic Parameters";
59 case DWC3_DGCMD_XMIT_FUNCTION:
60 return "Transmit Function Wake Device Notification";
61 case DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO:
62 return "Set Scratchpad Buffer Array Address Lo";
63 case DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI:
64 return "Set Scratchpad Buffer Array Address Hi";
65 case DWC3_DGCMD_SELECTED_FIFO_FLUSH:
66 return "Selected FIFO Flush";
67 case DWC3_DGCMD_ALL_FIFO_FLUSH:
68 return "All FIFO Flush";
69 case DWC3_DGCMD_SET_ENDPOINT_NRDY:
70 return "Set Endpoint NRDY";
71 case DWC3_DGCMD_RUN_SOC_BUS_LOOPBACK:
72 return "Run SoC Bus Loopback Test";
73 default:
74 return "UNKNOWN";
75 }
76}
77
78/**
79 * dwc3_gadget_link_string - returns link name
80 * @link_state: link state code
81 */
82static inline const char *
83dwc3_gadget_link_string(enum dwc3_link_state link_state)
84{
85 switch (link_state) {
86 case DWC3_LINK_STATE_U0:
87 return "U0";
88 case DWC3_LINK_STATE_U1:
89 return "U1";
90 case DWC3_LINK_STATE_U2:
91 return "U2";
92 case DWC3_LINK_STATE_U3:
93 return "U3";
94 case DWC3_LINK_STATE_SS_DIS:
95 return "SS.Disabled";
96 case DWC3_LINK_STATE_RX_DET:
97 return "RX.Detect";
98 case DWC3_LINK_STATE_SS_INACT:
99 return "SS.Inactive";
100 case DWC3_LINK_STATE_POLL:
101 return "Polling";
102 case DWC3_LINK_STATE_RECOV:
103 return "Recovery";
104 case DWC3_LINK_STATE_HRESET:
105 return "Hot Reset";
106 case DWC3_LINK_STATE_CMPLY:
107 return "Compliance";
108 case DWC3_LINK_STATE_LPBK:
109 return "Loopback";
110 case DWC3_LINK_STATE_RESET:
111 return "Reset";
112 case DWC3_LINK_STATE_RESUME:
113 return "Resume";
114 default:
115 return "UNKNOWN link state\n";
116 }
117}
118
Felipe Balbib5c7ed52017-03-31 14:44:09 +0300119/**
Thinh Nguyen0d36ded2018-11-07 17:55:19 -0800120 * dwc3_gadget_hs_link_string - returns highspeed and below link name
121 * @link_state: link state code
122 */
123static inline const char *
124dwc3_gadget_hs_link_string(enum dwc3_link_state link_state)
125{
126 switch (link_state) {
127 case DWC3_LINK_STATE_U0:
128 return "On";
129 case DWC3_LINK_STATE_U2:
130 return "Sleep";
131 case DWC3_LINK_STATE_U3:
132 return "Suspend";
133 case DWC3_LINK_STATE_SS_DIS:
134 return "Disconnected";
135 case DWC3_LINK_STATE_RX_DET:
136 return "Early Suspend";
137 case DWC3_LINK_STATE_RECOV:
138 return "Recovery";
139 case DWC3_LINK_STATE_RESET:
140 return "Reset";
141 case DWC3_LINK_STATE_RESUME:
142 return "Resume";
143 default:
144 return "UNKNOWN link state\n";
145 }
146}
147
148/**
Felipe Balbib5c7ed52017-03-31 14:44:09 +0300149 * dwc3_trb_type_string - returns TRB type as a string
150 * @type: the type of the TRB
151 */
152static inline const char *dwc3_trb_type_string(unsigned int type)
153{
154 switch (type) {
155 case DWC3_TRBCTL_NORMAL:
156 return "normal";
157 case DWC3_TRBCTL_CONTROL_SETUP:
158 return "setup";
159 case DWC3_TRBCTL_CONTROL_STATUS2:
160 return "status2";
161 case DWC3_TRBCTL_CONTROL_STATUS3:
162 return "status3";
163 case DWC3_TRBCTL_CONTROL_DATA:
164 return "data";
165 case DWC3_TRBCTL_ISOCHRONOUS_FIRST:
166 return "isoc-first";
167 case DWC3_TRBCTL_ISOCHRONOUS:
168 return "isoc";
169 case DWC3_TRBCTL_LINK_TRB:
170 return "link";
171 default:
172 return "UNKNOWN";
173 }
174}
175
Felipe Balbicdd72ac2016-09-26 13:22:21 +0300176static inline const char *dwc3_ep0_state_string(enum dwc3_ep0_state state)
177{
178 switch (state) {
179 case EP0_UNCONNECTED:
180 return "Unconnected";
181 case EP0_SETUP_PHASE:
182 return "Setup Phase";
183 case EP0_DATA_PHASE:
184 return "Data Phase";
185 case EP0_STATUS_PHASE:
186 return "Status Phase";
187 default:
188 return "UNKNOWN";
189 }
190}
191
Felipe Balbi80977dc2014-08-19 16:37:22 -0500192/**
193 * dwc3_gadget_event_string - returns event name
194 * @event: the event code
195 */
Felipe Balbi7790b352019-02-04 15:43:38 +0200196static inline const char *dwc3_gadget_event_string(char *str, size_t size,
197 const struct dwc3_event_devt *event)
Felipe Balbi80977dc2014-08-19 16:37:22 -0500198{
Felipe Balbif75cacc2016-05-23 11:10:08 +0300199 enum dwc3_link_state state = event->event_info & DWC3_LINK_STATE_MASK;
200
201 switch (event->type) {
Felipe Balbi80977dc2014-08-19 16:37:22 -0500202 case DWC3_DEVICE_EVENT_DISCONNECT:
Felipe Balbi7790b352019-02-04 15:43:38 +0200203 snprintf(str, size, "Disconnect: [%s]",
Felipe Balbif75cacc2016-05-23 11:10:08 +0300204 dwc3_gadget_link_string(state));
205 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500206 case DWC3_DEVICE_EVENT_RESET:
Felipe Balbi7790b352019-02-04 15:43:38 +0200207 snprintf(str, size, "Reset [%s]",
208 dwc3_gadget_link_string(state));
Felipe Balbif75cacc2016-05-23 11:10:08 +0300209 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500210 case DWC3_DEVICE_EVENT_CONNECT_DONE:
Felipe Balbi7790b352019-02-04 15:43:38 +0200211 snprintf(str, size, "Connection Done [%s]",
Felipe Balbif75cacc2016-05-23 11:10:08 +0300212 dwc3_gadget_link_string(state));
213 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500214 case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE:
Felipe Balbi7790b352019-02-04 15:43:38 +0200215 snprintf(str, size, "Link Change [%s]",
Felipe Balbif75cacc2016-05-23 11:10:08 +0300216 dwc3_gadget_link_string(state));
217 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500218 case DWC3_DEVICE_EVENT_WAKEUP:
Felipe Balbi7790b352019-02-04 15:43:38 +0200219 snprintf(str, size, "WakeUp [%s]",
220 dwc3_gadget_link_string(state));
Felipe Balbif75cacc2016-05-23 11:10:08 +0300221 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500222 case DWC3_DEVICE_EVENT_EOPF:
Felipe Balbi7790b352019-02-04 15:43:38 +0200223 snprintf(str, size, "End-Of-Frame [%s]",
Felipe Balbif75cacc2016-05-23 11:10:08 +0300224 dwc3_gadget_link_string(state));
225 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500226 case DWC3_DEVICE_EVENT_SOF:
Felipe Balbi7790b352019-02-04 15:43:38 +0200227 snprintf(str, size, "Start-Of-Frame [%s]",
Felipe Balbif75cacc2016-05-23 11:10:08 +0300228 dwc3_gadget_link_string(state));
229 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500230 case DWC3_DEVICE_EVENT_ERRATIC_ERROR:
Felipe Balbi7790b352019-02-04 15:43:38 +0200231 snprintf(str, size, "Erratic Error [%s]",
Felipe Balbif75cacc2016-05-23 11:10:08 +0300232 dwc3_gadget_link_string(state));
233 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500234 case DWC3_DEVICE_EVENT_CMD_CMPL:
Felipe Balbi7790b352019-02-04 15:43:38 +0200235 snprintf(str, size, "Command Complete [%s]",
Felipe Balbif75cacc2016-05-23 11:10:08 +0300236 dwc3_gadget_link_string(state));
237 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500238 case DWC3_DEVICE_EVENT_OVERFLOW:
Felipe Balbi7790b352019-02-04 15:43:38 +0200239 snprintf(str, size, "Overflow [%s]",
240 dwc3_gadget_link_string(state));
Felipe Balbif75cacc2016-05-23 11:10:08 +0300241 break;
242 default:
Felipe Balbi7790b352019-02-04 15:43:38 +0200243 snprintf(str, size, "UNKNOWN");
Felipe Balbi80977dc2014-08-19 16:37:22 -0500244 }
245
Felipe Balbif75cacc2016-05-23 11:10:08 +0300246 return str;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500247}
248
249/**
250 * dwc3_ep_event_string - returns event name
251 * @event: then event code
252 */
Felipe Balbi7790b352019-02-04 15:43:38 +0200253static inline const char *dwc3_ep_event_string(char *str, size_t size,
254 const struct dwc3_event_depevt *event, u32 ep0state)
Felipe Balbi80977dc2014-08-19 16:37:22 -0500255{
Felipe Balbif75cacc2016-05-23 11:10:08 +0300256 u8 epnum = event->endpoint_number;
Felipe Balbi43c96be2016-09-26 13:23:34 +0300257 size_t len;
Felipe Balbif75cacc2016-05-23 11:10:08 +0300258 int status;
259 int ret;
260
Felipe Balbi7790b352019-02-04 15:43:38 +0200261 ret = snprintf(str, size, "ep%d%s: ", epnum >> 1,
Felipe Balbi696fe692016-08-24 14:32:39 +0300262 (epnum & 1) ? "in" : "out");
Felipe Balbif75cacc2016-05-23 11:10:08 +0300263 if (ret < 0)
264 return "UNKNOWN";
265
Felipe Balbib27972b2018-04-06 11:03:19 +0300266 status = event->status;
267
Felipe Balbif75cacc2016-05-23 11:10:08 +0300268 switch (event->endpoint_event) {
Felipe Balbi80977dc2014-08-19 16:37:22 -0500269 case DWC3_DEPEVT_XFERCOMPLETE:
Felipe Balbib27972b2018-04-06 11:03:19 +0300270 len = strlen(str);
Felipe Balbi7790b352019-02-04 15:43:38 +0200271 snprintf(str + len, size - len, "Transfer Complete (%c%c%c)",
Felipe Balbib27972b2018-04-06 11:03:19 +0300272 status & DEPEVT_STATUS_SHORT ? 'S' : 's',
273 status & DEPEVT_STATUS_IOC ? 'I' : 'i',
274 status & DEPEVT_STATUS_LST ? 'L' : 'l');
275
Felipe Balbi43c96be2016-09-26 13:23:34 +0300276 len = strlen(str);
277
278 if (epnum <= 1)
Felipe Balbi7790b352019-02-04 15:43:38 +0200279 snprintf(str + len, size - len, " [%s]",
280 dwc3_ep0_state_string(ep0state));
Felipe Balbif75cacc2016-05-23 11:10:08 +0300281 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500282 case DWC3_DEPEVT_XFERINPROGRESS:
Felipe Balbib27972b2018-04-06 11:03:19 +0300283 len = strlen(str);
284
Felipe Balbi7790b352019-02-04 15:43:38 +0200285 snprintf(str + len, size - len, "Transfer In Progress [%d] (%c%c%c)",
Felipe Balbie1d542f2018-04-11 10:31:53 +0300286 event->parameters,
Felipe Balbib27972b2018-04-06 11:03:19 +0300287 status & DEPEVT_STATUS_SHORT ? 'S' : 's',
288 status & DEPEVT_STATUS_IOC ? 'I' : 'i',
289 status & DEPEVT_STATUS_LST ? 'M' : 'm');
Felipe Balbif75cacc2016-05-23 11:10:08 +0300290 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500291 case DWC3_DEPEVT_XFERNOTREADY:
Felipe Balbie1d542f2018-04-11 10:31:53 +0300292 len = strlen(str);
293
Felipe Balbi7790b352019-02-04 15:43:38 +0200294 snprintf(str + len, size - len, "Transfer Not Ready [%d]%s",
Felipe Balbie1d542f2018-04-11 10:31:53 +0300295 event->parameters,
296 status & DEPEVT_STATUS_TRANSFER_ACTIVE ?
Felipe Balbib27972b2018-04-06 11:03:19 +0300297 " (Active)" : " (Not Active)");
Felipe Balbi45a2af22016-09-26 12:54:04 +0300298
Felipe Balbi1381a512019-02-05 09:00:14 +0200299 len = strlen(str);
300
Felipe Balbi45a2af22016-09-26 12:54:04 +0300301 /* Control Endpoints */
302 if (epnum <= 1) {
303 int phase = DEPEVT_STATUS_CONTROL_PHASE(event->status);
304
305 switch (phase) {
306 case DEPEVT_STATUS_CONTROL_DATA:
Felipe Balbi1381a512019-02-05 09:00:14 +0200307 snprintf(str + ret, size - ret,
308 " [Data Phase]");
Felipe Balbi45a2af22016-09-26 12:54:04 +0300309 break;
310 case DEPEVT_STATUS_CONTROL_STATUS:
Felipe Balbi1381a512019-02-05 09:00:14 +0200311 snprintf(str + ret, size - ret,
312 " [Status Phase]");
Felipe Balbi45a2af22016-09-26 12:54:04 +0300313 }
314 }
Felipe Balbif75cacc2016-05-23 11:10:08 +0300315 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500316 case DWC3_DEPEVT_RXTXFIFOEVT:
Felipe Balbi1381a512019-02-05 09:00:14 +0200317 snprintf(str + ret, size - ret, "FIFO");
Felipe Balbif75cacc2016-05-23 11:10:08 +0300318 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500319 case DWC3_DEPEVT_STREAMEVT:
Felipe Balbif75cacc2016-05-23 11:10:08 +0300320 status = event->status;
321
322 switch (status) {
323 case DEPEVT_STREAMEVT_FOUND:
Felipe Balbi7790b352019-02-04 15:43:38 +0200324 snprintf(str + ret, size - ret, " Stream %d Found",
Felipe Balbif75cacc2016-05-23 11:10:08 +0300325 event->parameters);
326 break;
327 case DEPEVT_STREAMEVT_NOTFOUND:
328 default:
Felipe Balbi1381a512019-02-05 09:00:14 +0200329 snprintf(str + ret, size - ret, " Stream Not Found");
Felipe Balbif75cacc2016-05-23 11:10:08 +0300330 break;
331 }
332
333 break;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500334 case DWC3_DEPEVT_EPCMDCMPLT:
Felipe Balbi1381a512019-02-05 09:00:14 +0200335 snprintf(str + ret, size - ret, "Endpoint Command Complete");
Felipe Balbif75cacc2016-05-23 11:10:08 +0300336 break;
337 default:
Felipe Balbi7790b352019-02-04 15:43:38 +0200338 snprintf(str, size, "UNKNOWN");
Felipe Balbi80977dc2014-08-19 16:37:22 -0500339 }
340
Felipe Balbif75cacc2016-05-23 11:10:08 +0300341 return str;
Felipe Balbi80977dc2014-08-19 16:37:22 -0500342}
343
Felipe Balbie9960612014-08-19 16:49:20 -0500344/**
345 * dwc3_gadget_event_type_string - return event name
346 * @event: the event code
347 */
348static inline const char *dwc3_gadget_event_type_string(u8 event)
349{
350 switch (event) {
351 case DWC3_DEVICE_EVENT_DISCONNECT:
352 return "Disconnect";
353 case DWC3_DEVICE_EVENT_RESET:
354 return "Reset";
355 case DWC3_DEVICE_EVENT_CONNECT_DONE:
356 return "Connect Done";
357 case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE:
358 return "Link Status Change";
359 case DWC3_DEVICE_EVENT_WAKEUP:
360 return "Wake-Up";
361 case DWC3_DEVICE_EVENT_HIBER_REQ:
362 return "Hibernation";
363 case DWC3_DEVICE_EVENT_EOPF:
364 return "End of Periodic Frame";
365 case DWC3_DEVICE_EVENT_SOF:
366 return "Start of Frame";
367 case DWC3_DEVICE_EVENT_ERRATIC_ERROR:
368 return "Erratic Error";
369 case DWC3_DEVICE_EVENT_CMD_CMPL:
370 return "Command Complete";
371 case DWC3_DEVICE_EVENT_OVERFLOW:
372 return "Overflow";
373 default:
374 return "UNKNOWN";
375 }
376}
377
Felipe Balbi7790b352019-02-04 15:43:38 +0200378static inline const char *dwc3_decode_event(char *str, size_t size, u32 event,
379 u32 ep0state)
Felipe Balbif75cacc2016-05-23 11:10:08 +0300380{
381 const union dwc3_event evt = (union dwc3_event) event;
382
383 if (evt.type.is_devspec)
Felipe Balbi7790b352019-02-04 15:43:38 +0200384 return dwc3_gadget_event_string(str, size, &evt.devt);
Felipe Balbif75cacc2016-05-23 11:10:08 +0300385 else
Felipe Balbi7790b352019-02-04 15:43:38 +0200386 return dwc3_ep_event_string(str, size, &evt.depevt, ep0state);
Felipe Balbif75cacc2016-05-23 11:10:08 +0300387}
388
Felipe Balbi0933df12016-05-23 14:02:33 +0300389static inline const char *dwc3_ep_cmd_status_string(int status)
390{
391 switch (status) {
392 case -ETIMEDOUT:
393 return "Timed Out";
394 case 0:
395 return "Successful";
396 case DEPEVT_TRANSFER_NO_RESOURCE:
397 return "No Resource";
398 case DEPEVT_TRANSFER_BUS_EXPIRY:
399 return "Bus Expiry";
400 default:
401 return "UNKNOWN";
402 }
403}
404
Felipe Balbi71f7e702016-05-23 14:16:19 +0300405static inline const char *dwc3_gadget_generic_cmd_status_string(int status)
406{
407 switch (status) {
408 case -ETIMEDOUT:
409 return "Timed Out";
410 case 0:
411 return "Successful";
412 case 1:
413 return "Error";
414 default:
415 return "UNKNOWN";
416 }
417}
418
Felipe Balbi57b14da2016-09-30 14:12:34 +0300419
Felipe Balbi72246da2011-08-19 18:10:58 +0300420#ifdef CONFIG_DEBUG_FS
Du, Changbin4e9f3112016-04-12 19:10:18 +0800421extern void dwc3_debugfs_init(struct dwc3 *);
Felipe Balbi72246da2011-08-19 18:10:58 +0300422extern void dwc3_debugfs_exit(struct dwc3 *);
423#else
Du, Changbin4e9f3112016-04-12 19:10:18 +0800424static inline void dwc3_debugfs_init(struct dwc3 *d)
425{ }
Felipe Balbi72246da2011-08-19 18:10:58 +0300426static inline void dwc3_debugfs_exit(struct dwc3 *d)
427{ }
428#endif
Felipe Balbi80977dc2014-08-19 16:37:22 -0500429#endif /* __DWC3_DEBUG_H */