1 /* SPDX-License-Identifier: GPL-2.0 */
3 * trace.h - DesignWare USB3 DRD Controller Trace Support
5 * Copyright (C) 2014 Texas Instruments Incorporated - https://www.ti.com
11 #define TRACE_SYSTEM dwc3
13 #if !defined(__DWC3_TRACE_H) || defined(TRACE_HEADER_MULTI_READ)
14 #define __DWC3_TRACE_H
16 #include <linux/types.h>
17 #include <linux/tracepoint.h>
18 #include <asm/byteorder.h>
22 DECLARE_EVENT_CLASS(dwc3_log_io,
23 TP_PROTO(void *base, u32 offset, u32 value),
24 TP_ARGS(base, offset, value),
32 __entry->offset = offset;
33 __entry->value = value;
35 TP_printk("addr %p offset %04x value %08x",
36 __entry->base + __entry->offset,
41 DEFINE_EVENT(dwc3_log_io, dwc3_readl,
42 TP_PROTO(void __iomem *base, u32 offset, u32 value),
43 TP_ARGS(base, offset, value)
46 DEFINE_EVENT(dwc3_log_io, dwc3_writel,
47 TP_PROTO(void __iomem *base, u32 offset, u32 value),
48 TP_ARGS(base, offset, value)
51 DECLARE_EVENT_CLASS(dwc3_log_event,
52 TP_PROTO(u32 event, struct dwc3 *dwc),
56 __field(u32, ep0state)
57 __dynamic_array(char, str, DWC3_MSG_MAX)
60 __entry->event = event;
61 __entry->ep0state = dwc->ep0state;
63 TP_printk("event (%08x): %s", __entry->event,
64 dwc3_decode_event(__get_str(str), DWC3_MSG_MAX,
65 __entry->event, __entry->ep0state))
68 DEFINE_EVENT(dwc3_log_event, dwc3_event,
69 TP_PROTO(u32 event, struct dwc3 *dwc),
73 DECLARE_EVENT_CLASS(dwc3_log_ctrl,
74 TP_PROTO(struct usb_ctrlrequest *ctrl),
77 __field(__u8, bRequestType)
78 __field(__u8, bRequest)
79 __field(__u16, wValue)
80 __field(__u16, wIndex)
81 __field(__u16, wLength)
82 __dynamic_array(char, str, DWC3_MSG_MAX)
85 __entry->bRequestType = ctrl->bRequestType;
86 __entry->bRequest = ctrl->bRequest;
87 __entry->wValue = le16_to_cpu(ctrl->wValue);
88 __entry->wIndex = le16_to_cpu(ctrl->wIndex);
89 __entry->wLength = le16_to_cpu(ctrl->wLength);
91 TP_printk("%s", usb_decode_ctrl(__get_str(str), DWC3_MSG_MAX,
92 __entry->bRequestType,
93 __entry->bRequest, __entry->wValue,
94 __entry->wIndex, __entry->wLength)
98 DEFINE_EVENT(dwc3_log_ctrl, dwc3_ctrl_req,
99 TP_PROTO(struct usb_ctrlrequest *ctrl),
103 DECLARE_EVENT_CLASS(dwc3_log_request,
104 TP_PROTO(struct dwc3_request *req),
107 __string(name, req->dep->name)
108 __field(struct dwc3_request *, req)
109 __field(unsigned int, actual)
110 __field(unsigned int, length)
113 __field(int, short_not_ok)
114 __field(int, no_interrupt)
117 __assign_str(name, req->dep->name);
119 __entry->actual = req->request.actual;
120 __entry->length = req->request.length;
121 __entry->status = req->request.status;
122 __entry->zero = req->request.zero;
123 __entry->short_not_ok = req->request.short_not_ok;
124 __entry->no_interrupt = req->request.no_interrupt;
126 TP_printk("%s: req %p length %u/%u %s%s%s ==> %d",
127 __get_str(name), __entry->req, __entry->actual, __entry->length,
128 __entry->zero ? "Z" : "z",
129 __entry->short_not_ok ? "S" : "s",
130 __entry->no_interrupt ? "i" : "I",
135 DEFINE_EVENT(dwc3_log_request, dwc3_alloc_request,
136 TP_PROTO(struct dwc3_request *req),
140 DEFINE_EVENT(dwc3_log_request, dwc3_free_request,
141 TP_PROTO(struct dwc3_request *req),
145 DEFINE_EVENT(dwc3_log_request, dwc3_ep_queue,
146 TP_PROTO(struct dwc3_request *req),
150 DEFINE_EVENT(dwc3_log_request, dwc3_ep_dequeue,
151 TP_PROTO(struct dwc3_request *req),
155 DEFINE_EVENT(dwc3_log_request, dwc3_gadget_giveback,
156 TP_PROTO(struct dwc3_request *req),
160 DECLARE_EVENT_CLASS(dwc3_log_generic_cmd,
161 TP_PROTO(unsigned int cmd, u32 param, int status),
162 TP_ARGS(cmd, param, status),
164 __field(unsigned int, cmd)
170 __entry->param = param;
171 __entry->status = status;
173 TP_printk("cmd '%s' [%x] param %08x --> status: %s",
174 dwc3_gadget_generic_cmd_string(__entry->cmd),
175 __entry->cmd, __entry->param,
176 dwc3_gadget_generic_cmd_status_string(__entry->status)
180 DEFINE_EVENT(dwc3_log_generic_cmd, dwc3_gadget_generic_cmd,
181 TP_PROTO(unsigned int cmd, u32 param, int status),
182 TP_ARGS(cmd, param, status)
185 DECLARE_EVENT_CLASS(dwc3_log_gadget_ep_cmd,
186 TP_PROTO(struct dwc3_ep *dep, unsigned int cmd,
187 struct dwc3_gadget_ep_cmd_params *params, int cmd_status),
188 TP_ARGS(dep, cmd, params, cmd_status),
190 __string(name, dep->name)
191 __field(unsigned int, cmd)
195 __field(int, cmd_status)
198 __assign_str(name, dep->name);
200 __entry->param0 = params->param0;
201 __entry->param1 = params->param1;
202 __entry->param2 = params->param2;
203 __entry->cmd_status = cmd_status;
205 TP_printk("%s: cmd '%s' [%x] params %08x %08x %08x --> status: %s",
206 __get_str(name), dwc3_gadget_ep_cmd_string(__entry->cmd),
207 __entry->cmd, __entry->param0,
208 __entry->param1, __entry->param2,
209 dwc3_ep_cmd_status_string(__entry->cmd_status)
213 DEFINE_EVENT(dwc3_log_gadget_ep_cmd, dwc3_gadget_ep_cmd,
214 TP_PROTO(struct dwc3_ep *dep, unsigned int cmd,
215 struct dwc3_gadget_ep_cmd_params *params, int cmd_status),
216 TP_ARGS(dep, cmd, params, cmd_status)
219 DECLARE_EVENT_CLASS(dwc3_log_trb,
220 TP_PROTO(struct dwc3_ep *dep, struct dwc3_trb *trb),
223 __string(name, dep->name)
224 __field(struct dwc3_trb *, trb)
230 __field(u32, enqueue)
231 __field(u32, dequeue)
234 __assign_str(name, dep->name);
236 __entry->bpl = trb->bpl;
237 __entry->bph = trb->bph;
238 __entry->size = trb->size;
239 __entry->ctrl = trb->ctrl;
240 __entry->type = usb_endpoint_type(dep->endpoint.desc);
241 __entry->enqueue = dep->trb_enqueue;
242 __entry->dequeue = dep->trb_dequeue;
244 TP_printk("%s: trb %p (E%d:D%d) buf %08x%08x size %s%d ctrl %08x (%c%c%c%c:%c%c:%s)",
245 __get_str(name), __entry->trb, __entry->enqueue,
246 __entry->dequeue, __entry->bph, __entry->bpl,
248 int pcm = ((__entry->size >> 24) & 3) + 1;
250 switch (__entry->type) {
251 case USB_ENDPOINT_XFER_INT:
252 case USB_ENDPOINT_XFER_ISOC:
269 DWC3_TRB_SIZE_LENGTH(__entry->size), __entry->ctrl,
270 __entry->ctrl & DWC3_TRB_CTRL_HWO ? 'H' : 'h',
271 __entry->ctrl & DWC3_TRB_CTRL_LST ? 'L' : 'l',
272 __entry->ctrl & DWC3_TRB_CTRL_CHN ? 'C' : 'c',
273 __entry->ctrl & DWC3_TRB_CTRL_CSP ? 'S' : 's',
274 __entry->ctrl & DWC3_TRB_CTRL_ISP_IMI ? 'S' : 's',
275 __entry->ctrl & DWC3_TRB_CTRL_IOC ? 'C' : 'c',
276 dwc3_trb_type_string(DWC3_TRBCTL_TYPE(__entry->ctrl))
280 DEFINE_EVENT(dwc3_log_trb, dwc3_prepare_trb,
281 TP_PROTO(struct dwc3_ep *dep, struct dwc3_trb *trb),
285 DEFINE_EVENT(dwc3_log_trb, dwc3_complete_trb,
286 TP_PROTO(struct dwc3_ep *dep, struct dwc3_trb *trb),
290 DECLARE_EVENT_CLASS(dwc3_log_ep,
291 TP_PROTO(struct dwc3_ep *dep),
294 __string(name, dep->name)
295 __field(unsigned int, maxpacket)
296 __field(unsigned int, maxpacket_limit)
297 __field(unsigned int, max_streams)
298 __field(unsigned int, maxburst)
299 __field(unsigned int, flags)
300 __field(unsigned int, direction)
301 __field(u8, trb_enqueue)
302 __field(u8, trb_dequeue)
305 __assign_str(name, dep->name);
306 __entry->maxpacket = dep->endpoint.maxpacket;
307 __entry->maxpacket_limit = dep->endpoint.maxpacket_limit;
308 __entry->max_streams = dep->endpoint.max_streams;
309 __entry->maxburst = dep->endpoint.maxburst;
310 __entry->flags = dep->flags;
311 __entry->direction = dep->direction;
312 __entry->trb_enqueue = dep->trb_enqueue;
313 __entry->trb_dequeue = dep->trb_dequeue;
315 TP_printk("%s: mps %d/%d streams %d burst %d ring %d/%d flags %c:%c%c%c%c:%c",
316 __get_str(name), __entry->maxpacket,
317 __entry->maxpacket_limit, __entry->max_streams,
318 __entry->maxburst, __entry->trb_enqueue,
319 __entry->trb_dequeue,
320 __entry->flags & DWC3_EP_ENABLED ? 'E' : 'e',
321 __entry->flags & DWC3_EP_STALL ? 'S' : 's',
322 __entry->flags & DWC3_EP_WEDGE ? 'W' : 'w',
323 __entry->flags & DWC3_EP_TRANSFER_STARTED ? 'B' : 'b',
324 __entry->flags & DWC3_EP_PENDING_REQUEST ? 'P' : 'p',
325 __entry->direction ? '<' : '>'
329 DEFINE_EVENT(dwc3_log_ep, dwc3_gadget_ep_enable,
330 TP_PROTO(struct dwc3_ep *dep),
334 DEFINE_EVENT(dwc3_log_ep, dwc3_gadget_ep_disable,
335 TP_PROTO(struct dwc3_ep *dep),
339 #endif /* __DWC3_TRACE_H */
341 /* this part has to be here */
343 #undef TRACE_INCLUDE_PATH
344 #define TRACE_INCLUDE_PATH .
346 #undef TRACE_INCLUDE_FILE
347 #define TRACE_INCLUDE_FILE trace
349 #include <trace/define_trace.h>