2 * debug.h - DesignWare USB3 DRD Controller Debug Header
4 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
6 * Authors: Felipe Balbi <balbi@ti.com>,
7 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 of
11 * the License as published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
19 #ifndef __DWC3_DEBUG_H
20 #define __DWC3_DEBUG_H
25 * dwc3_gadget_ep_cmd_string - returns endpoint command string
28 static inline const char *
29 dwc3_gadget_ep_cmd_string(u8 cmd
)
32 case DWC3_DEPCMD_DEPSTARTCFG
:
33 return "Start New Configuration";
34 case DWC3_DEPCMD_ENDTRANSFER
:
35 return "End Transfer";
36 case DWC3_DEPCMD_UPDATETRANSFER
:
37 return "Update Transfer";
38 case DWC3_DEPCMD_STARTTRANSFER
:
39 return "Start Transfer";
40 case DWC3_DEPCMD_CLEARSTALL
:
42 case DWC3_DEPCMD_SETSTALL
:
44 case DWC3_DEPCMD_GETEPSTATE
:
45 return "Get Endpoint State";
46 case DWC3_DEPCMD_SETTRANSFRESOURCE
:
47 return "Set Endpoint Transfer Resource";
48 case DWC3_DEPCMD_SETEPCONFIG
:
49 return "Set Endpoint Configuration";
51 return "UNKNOWN command";
56 * dwc3_gadget_generic_cmd_string - returns generic command string
59 static inline const char *
60 dwc3_gadget_generic_cmd_string(u8 cmd
)
63 case DWC3_DGCMD_SET_LMP
:
65 case DWC3_DGCMD_SET_PERIODIC_PAR
:
66 return "Set Periodic Parameters";
67 case DWC3_DGCMD_XMIT_FUNCTION
:
68 return "Transmit Function Wake Device Notification";
69 case DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO
:
70 return "Set Scratchpad Buffer Array Address Lo";
71 case DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI
:
72 return "Set Scratchpad Buffer Array Address Hi";
73 case DWC3_DGCMD_SELECTED_FIFO_FLUSH
:
74 return "Selected FIFO Flush";
75 case DWC3_DGCMD_ALL_FIFO_FLUSH
:
76 return "All FIFO Flush";
77 case DWC3_DGCMD_SET_ENDPOINT_NRDY
:
78 return "Set Endpoint NRDY";
79 case DWC3_DGCMD_RUN_SOC_BUS_LOOPBACK
:
80 return "Run SoC Bus Loopback Test";
87 * dwc3_gadget_link_string - returns link name
88 * @link_state: link state code
90 static inline const char *
91 dwc3_gadget_link_string(enum dwc3_link_state link_state
)
94 case DWC3_LINK_STATE_U0
:
96 case DWC3_LINK_STATE_U1
:
98 case DWC3_LINK_STATE_U2
:
100 case DWC3_LINK_STATE_U3
:
102 case DWC3_LINK_STATE_SS_DIS
:
103 return "SS.Disabled";
104 case DWC3_LINK_STATE_RX_DET
:
106 case DWC3_LINK_STATE_SS_INACT
:
107 return "SS.Inactive";
108 case DWC3_LINK_STATE_POLL
:
110 case DWC3_LINK_STATE_RECOV
:
112 case DWC3_LINK_STATE_HRESET
:
114 case DWC3_LINK_STATE_CMPLY
:
116 case DWC3_LINK_STATE_LPBK
:
118 case DWC3_LINK_STATE_RESET
:
120 case DWC3_LINK_STATE_RESUME
:
123 return "UNKNOWN link state\n";
128 * dwc3_trb_type_string - returns TRB type as a string
129 * @type: the type of the TRB
131 static inline const char *dwc3_trb_type_string(unsigned int type
)
134 case DWC3_TRBCTL_NORMAL
:
136 case DWC3_TRBCTL_CONTROL_SETUP
:
138 case DWC3_TRBCTL_CONTROL_STATUS2
:
140 case DWC3_TRBCTL_CONTROL_STATUS3
:
142 case DWC3_TRBCTL_CONTROL_DATA
:
144 case DWC3_TRBCTL_ISOCHRONOUS_FIRST
:
146 case DWC3_TRBCTL_ISOCHRONOUS
:
148 case DWC3_TRBCTL_LINK_TRB
:
155 static inline const char *dwc3_ep0_state_string(enum dwc3_ep0_state state
)
158 case EP0_UNCONNECTED
:
159 return "Unconnected";
160 case EP0_SETUP_PHASE
:
161 return "Setup Phase";
164 case EP0_STATUS_PHASE
:
165 return "Status Phase";
172 * dwc3_gadget_event_string - returns event name
173 * @event: the event code
175 static inline const char *
176 dwc3_gadget_event_string(char *str
, const struct dwc3_event_devt
*event
)
178 enum dwc3_link_state state
= event
->event_info
& DWC3_LINK_STATE_MASK
;
180 switch (event
->type
) {
181 case DWC3_DEVICE_EVENT_DISCONNECT
:
182 sprintf(str
, "Disconnect: [%s]",
183 dwc3_gadget_link_string(state
));
185 case DWC3_DEVICE_EVENT_RESET
:
186 sprintf(str
, "Reset [%s]", dwc3_gadget_link_string(state
));
188 case DWC3_DEVICE_EVENT_CONNECT_DONE
:
189 sprintf(str
, "Connection Done [%s]",
190 dwc3_gadget_link_string(state
));
192 case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE
:
193 sprintf(str
, "Link Change [%s]",
194 dwc3_gadget_link_string(state
));
196 case DWC3_DEVICE_EVENT_WAKEUP
:
197 sprintf(str
, "WakeUp [%s]", dwc3_gadget_link_string(state
));
199 case DWC3_DEVICE_EVENT_EOPF
:
200 sprintf(str
, "End-Of-Frame [%s]",
201 dwc3_gadget_link_string(state
));
203 case DWC3_DEVICE_EVENT_SOF
:
204 sprintf(str
, "Start-Of-Frame [%s]",
205 dwc3_gadget_link_string(state
));
207 case DWC3_DEVICE_EVENT_ERRATIC_ERROR
:
208 sprintf(str
, "Erratic Error [%s]",
209 dwc3_gadget_link_string(state
));
211 case DWC3_DEVICE_EVENT_CMD_CMPL
:
212 sprintf(str
, "Command Complete [%s]",
213 dwc3_gadget_link_string(state
));
215 case DWC3_DEVICE_EVENT_OVERFLOW
:
216 sprintf(str
, "Overflow [%s]", dwc3_gadget_link_string(state
));
219 sprintf(str
, "UNKNOWN");
225 static inline void dwc3_decode_get_status(__u8 t
, __u16 i
, __u16 l
, char *str
)
227 switch (t
& USB_RECIP_MASK
) {
228 case USB_RECIP_INTERFACE
:
229 sprintf(str
, "Get Interface Status(Intf = %d, Length = %d)",
232 case USB_RECIP_ENDPOINT
:
233 sprintf(str
, "Get Endpoint Status(ep%d%s)",
235 i
& USB_DIR_IN
? "in" : "out");
240 static inline void dwc3_decode_set_clear_feature(__u8 t
, __u8 b
, __u16 v
,
243 switch (t
& USB_RECIP_MASK
) {
244 case USB_RECIP_DEVICE
:
245 sprintf(str
, "%s Device Feature(%s%s)",
246 b
== USB_REQ_CLEAR_FEATURE
? "Clear" : "Set",
249 case USB_DEVICE_SELF_POWERED
:
252 case USB_DEVICE_REMOTE_WAKEUP
:
255 case USB_DEVICE_TEST_MODE
:
261 v
== USB_DEVICE_TEST_MODE
?
271 s
= ": TEST_SE0_NAK";
277 s
= ": TEST_FORCE_EN";
283 case USB_RECIP_INTERFACE
:
284 sprintf(str
, "%s Interface Feature(%s)",
285 b
== USB_REQ_CLEAR_FEATURE
? "Clear" : "Set",
286 v
== USB_INTRF_FUNC_SUSPEND
?
287 "Function Suspend" : "UNKNOWN");
289 case USB_RECIP_ENDPOINT
:
290 sprintf(str
, "%s Endpoint Feature(%s ep%d%s)",
291 b
== USB_REQ_CLEAR_FEATURE
? "Clear" : "Set",
292 v
== USB_ENDPOINT_HALT
? "Halt" : "UNKNOWN",
294 i
& USB_DIR_IN
? "in" : "out");
299 static inline void dwc3_decode_set_address(__u16 v
, char *str
)
301 sprintf(str
, "Set Address(Addr = %02x)", v
);
304 static inline void dwc3_decode_get_set_descriptor(__u8 t
, __u8 b
, __u16 v
,
305 __u16 i
, __u16 l
, char *str
)
307 sprintf(str
, "%s %s Descriptor(Index = %d, Length = %d)",
308 b
== USB_REQ_GET_DESCRIPTOR
? "Get" : "Set",
320 case USB_DT_INTERFACE
:
323 case USB_DT_ENDPOINT
:
326 case USB_DT_DEVICE_QUALIFIER
:
327 s
= "Device Qualifier";
329 case USB_DT_OTHER_SPEED_CONFIG
:
330 s
= "Other Speed Config";
332 case USB_DT_INTERFACE_POWER
:
333 s
= "Interface Power";
341 case USB_DT_INTERFACE_ASSOCIATION
:
342 s
= "Interface Association";
347 case USB_DT_DEVICE_CAPABILITY
:
348 s
= "Device Capability";
350 case USB_DT_PIPE_USAGE
:
353 case USB_DT_SS_ENDPOINT_COMP
:
354 s
= "SS Endpoint Companion";
356 case USB_DT_SSP_ISOC_ENDPOINT_COMP
:
357 s
= "SSP Isochronous Endpoint Companion";
362 } s
; }), v
& 0xff, l
);
366 static inline void dwc3_decode_get_configuration(__u16 l
, char *str
)
368 sprintf(str
, "Get Configuration(Length = %d)", l
);
371 static inline void dwc3_decode_set_configuration(__u8 v
, char *str
)
373 sprintf(str
, "Set Configuration(Config = %d)", v
);
376 static inline void dwc3_decode_get_intf(__u16 i
, __u16 l
, char *str
)
378 sprintf(str
, "Get Interface(Intf = %d, Length = %d)", i
, l
);
381 static inline void dwc3_decode_set_intf(__u8 v
, __u16 i
, char *str
)
383 sprintf(str
, "Set Interface(Intf = %d, Alt.Setting = %d)", i
, v
);
386 static inline void dwc3_decode_synch_frame(__u16 i
, __u16 l
, char *str
)
388 sprintf(str
, "Synch Frame(Endpoint = %d, Length = %d)", i
, l
);
391 static inline void dwc3_decode_set_sel(__u16 l
, char *str
)
393 sprintf(str
, "Set SEL(Length = %d)", l
);
396 static inline void dwc3_decode_set_isoch_delay(__u8 v
, char *str
)
398 sprintf(str
, "Set Isochronous Delay(Delay = %d ns)", v
);
402 * dwc3_decode_ctrl - returns a string represetion of ctrl request
404 static inline const char *dwc3_decode_ctrl(char *str
, __u8 bRequestType
,
405 __u8 bRequest
, __u16 wValue
, __u16 wIndex
, __u16 wLength
)
408 case USB_REQ_GET_STATUS
:
409 dwc3_decode_get_status(bRequestType
, wIndex
, wLength
, str
);
411 case USB_REQ_CLEAR_FEATURE
:
412 case USB_REQ_SET_FEATURE
:
413 dwc3_decode_set_clear_feature(bRequestType
, bRequest
, wValue
,
416 case USB_REQ_SET_ADDRESS
:
417 dwc3_decode_set_address(wValue
, str
);
419 case USB_REQ_GET_DESCRIPTOR
:
420 case USB_REQ_SET_DESCRIPTOR
:
421 dwc3_decode_get_set_descriptor(bRequestType
, bRequest
, wValue
,
422 wIndex
, wLength
, str
);
424 case USB_REQ_GET_CONFIGURATION
:
425 dwc3_decode_get_configuration(wLength
, str
);
427 case USB_REQ_SET_CONFIGURATION
:
428 dwc3_decode_set_configuration(wValue
, str
);
430 case USB_REQ_GET_INTERFACE
:
431 dwc3_decode_get_intf(wIndex
, wLength
, str
);
433 case USB_REQ_SET_INTERFACE
:
434 dwc3_decode_set_intf(wValue
, wIndex
, str
);
436 case USB_REQ_SYNCH_FRAME
:
437 dwc3_decode_synch_frame(wIndex
, wLength
, str
);
439 case USB_REQ_SET_SEL
:
440 dwc3_decode_set_sel(wLength
, str
);
442 case USB_REQ_SET_ISOCH_DELAY
:
443 dwc3_decode_set_isoch_delay(wValue
, str
);
446 sprintf(str
, "%02x %02x %02x %02x %02x %02x %02x %02x",
447 bRequestType
, bRequest
,
448 cpu_to_le16(wValue
) & 0xff,
449 cpu_to_le16(wValue
) >> 8,
450 cpu_to_le16(wIndex
) & 0xff,
451 cpu_to_le16(wIndex
) >> 8,
452 cpu_to_le16(wLength
) & 0xff,
453 cpu_to_le16(wLength
) >> 8);
460 * dwc3_ep_event_string - returns event name
461 * @event: then event code
463 static inline const char *
464 dwc3_ep_event_string(char *str
, const struct dwc3_event_depevt
*event
,
467 u8 epnum
= event
->endpoint_number
;
472 ret
= sprintf(str
, "ep%d%s: ", epnum
>> 1,
473 (epnum
& 1) ? "in" : "out");
477 switch (event
->endpoint_event
) {
478 case DWC3_DEPEVT_XFERCOMPLETE
:
479 strcat(str
, "Transfer Complete");
483 sprintf(str
+ len
, " [%s]", dwc3_ep0_state_string(ep0state
));
485 case DWC3_DEPEVT_XFERINPROGRESS
:
486 strcat(str
, "Transfer In-Progress");
488 case DWC3_DEPEVT_XFERNOTREADY
:
489 strcat(str
, "Transfer Not Ready");
490 status
= event
->status
& DEPEVT_STATUS_TRANSFER_ACTIVE
;
491 strcat(str
, status
? " (Active)" : " (Not Active)");
493 /* Control Endpoints */
495 int phase
= DEPEVT_STATUS_CONTROL_PHASE(event
->status
);
498 case DEPEVT_STATUS_CONTROL_DATA
:
499 strcat(str
, " [Data Phase]");
501 case DEPEVT_STATUS_CONTROL_STATUS
:
502 strcat(str
, " [Status Phase]");
506 case DWC3_DEPEVT_RXTXFIFOEVT
:
509 case DWC3_DEPEVT_STREAMEVT
:
510 status
= event
->status
;
513 case DEPEVT_STREAMEVT_FOUND
:
514 sprintf(str
+ ret
, " Stream %d Found",
517 case DEPEVT_STREAMEVT_NOTFOUND
:
519 strcat(str
, " Stream Not Found");
524 case DWC3_DEPEVT_EPCMDCMPLT
:
525 strcat(str
, "Endpoint Command Complete");
528 sprintf(str
, "UNKNOWN");
535 * dwc3_gadget_event_type_string - return event name
536 * @event: the event code
538 static inline const char *dwc3_gadget_event_type_string(u8 event
)
541 case DWC3_DEVICE_EVENT_DISCONNECT
:
543 case DWC3_DEVICE_EVENT_RESET
:
545 case DWC3_DEVICE_EVENT_CONNECT_DONE
:
546 return "Connect Done";
547 case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE
:
548 return "Link Status Change";
549 case DWC3_DEVICE_EVENT_WAKEUP
:
551 case DWC3_DEVICE_EVENT_HIBER_REQ
:
552 return "Hibernation";
553 case DWC3_DEVICE_EVENT_EOPF
:
554 return "End of Periodic Frame";
555 case DWC3_DEVICE_EVENT_SOF
:
556 return "Start of Frame";
557 case DWC3_DEVICE_EVENT_ERRATIC_ERROR
:
558 return "Erratic Error";
559 case DWC3_DEVICE_EVENT_CMD_CMPL
:
560 return "Command Complete";
561 case DWC3_DEVICE_EVENT_OVERFLOW
:
568 static inline const char *dwc3_decode_event(char *str
, u32 event
, u32 ep0state
)
570 const union dwc3_event evt
= (union dwc3_event
) event
;
572 if (evt
.type
.is_devspec
)
573 return dwc3_gadget_event_string(str
, &evt
.devt
);
575 return dwc3_ep_event_string(str
, &evt
.depevt
, ep0state
);
578 static inline const char *dwc3_ep_cmd_status_string(int status
)
585 case DEPEVT_TRANSFER_NO_RESOURCE
:
586 return "No Resource";
587 case DEPEVT_TRANSFER_BUS_EXPIRY
:
594 static inline const char *dwc3_gadget_generic_cmd_status_string(int status
)
609 #ifdef CONFIG_DEBUG_FS
610 extern void dwc3_debugfs_init(struct dwc3
*);
611 extern void dwc3_debugfs_exit(struct dwc3
*);
613 static inline void dwc3_debugfs_init(struct dwc3
*d
)
615 static inline void dwc3_debugfs_exit(struct dwc3
*d
)
618 #endif /* __DWC3_DEBUG_H */