2 * trace.h - DesignWare USB3 DRD Controller Trace Support
4 * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 of
10 * the License as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
19 #define TRACE_SYSTEM dwc3
21 #if !defined(__DWC3_TRACE_H) || defined(TRACE_HEADER_MULTI_READ)
22 #define __DWC3_TRACE_H
24 #include <linux/types.h>
25 #include <linux/tracepoint.h>
26 #include <asm/byteorder.h>
30 DECLARE_EVENT_CLASS(dwc3_log_msg,
31 TP_PROTO(struct va_format *vaf),
33 TP_STRUCT__entry(__dynamic_array(char, msg, DWC3_MSG_MAX)),
35 vsnprintf(__get_str(msg), DWC3_MSG_MAX, vaf->fmt, *vaf->va);
37 TP_printk("%s", __get_str(msg))
40 DEFINE_EVENT(dwc3_log_msg, dwc3_gadget,
41 TP_PROTO(struct va_format *vaf),
45 DEFINE_EVENT(dwc3_log_msg, dwc3_core,
46 TP_PROTO(struct va_format *vaf),
50 DEFINE_EVENT(dwc3_log_msg, dwc3_ep0,
51 TP_PROTO(struct va_format *vaf),
55 DECLARE_EVENT_CLASS(dwc3_log_io,
56 TP_PROTO(void *base, u32 offset, u32 value),
57 TP_ARGS(base, offset, value),
65 __entry->offset = offset;
66 __entry->value = value;
68 TP_printk("addr %p value %08x", __entry->base + __entry->offset,
72 DEFINE_EVENT(dwc3_log_io, dwc3_readl,
73 TP_PROTO(void *base, u32 offset, u32 value),
74 TP_ARGS(base, offset, value)
77 DEFINE_EVENT(dwc3_log_io, dwc3_writel,
78 TP_PROTO(void *base, u32 offset, u32 value),
79 TP_ARGS(base, offset, value)
82 DECLARE_EVENT_CLASS(dwc3_log_event,
83 TP_PROTO(u32 event, struct dwc3 *dwc),
87 __field(u32, ep0state)
90 __entry->event = event;
91 __entry->ep0state = dwc->ep0state;
93 TP_printk("event (%08x): %s", __entry->event,
94 dwc3_decode_event(__entry->event, __entry->ep0state))
97 DEFINE_EVENT(dwc3_log_event, dwc3_event,
98 TP_PROTO(u32 event, struct dwc3 *dwc),
102 DECLARE_EVENT_CLASS(dwc3_log_ctrl,
103 TP_PROTO(struct usb_ctrlrequest *ctrl),
106 __field(__u8, bRequestType)
107 __field(__u8, bRequest)
108 __field(__u16, wValue)
109 __field(__u16, wIndex)
110 __field(__u16, wLength)
113 __entry->bRequestType = ctrl->bRequestType;
114 __entry->bRequest = ctrl->bRequest;
115 __entry->wValue = le16_to_cpu(ctrl->wValue);
116 __entry->wIndex = le16_to_cpu(ctrl->wIndex);
117 __entry->wLength = le16_to_cpu(ctrl->wLength);
119 TP_printk("bRequestType %02x bRequest %02x wValue %04x wIndex %04x wLength %d",
120 __entry->bRequestType, __entry->bRequest,
121 __entry->wValue, __entry->wIndex,
126 DEFINE_EVENT(dwc3_log_ctrl, dwc3_ctrl_req,
127 TP_PROTO(struct usb_ctrlrequest *ctrl),
131 DECLARE_EVENT_CLASS(dwc3_log_request,
132 TP_PROTO(struct dwc3_request *req),
135 __dynamic_array(char, name, DWC3_MSG_MAX)
136 __field(struct dwc3_request *, req)
137 __field(unsigned, actual)
138 __field(unsigned, length)
141 __field(int, short_not_ok)
142 __field(int, no_interrupt)
145 snprintf(__get_str(name), DWC3_MSG_MAX, "%s", req->dep->name);
147 __entry->actual = req->request.actual;
148 __entry->length = req->request.length;
149 __entry->status = req->request.status;
150 __entry->zero = req->request.zero;
151 __entry->short_not_ok = req->request.short_not_ok;
152 __entry->no_interrupt = req->request.no_interrupt;
154 TP_printk("%s: req %p length %u/%u %s%s%s ==> %d",
155 __get_str(name), __entry->req, __entry->actual, __entry->length,
156 __entry->zero ? "Z" : "z",
157 __entry->short_not_ok ? "S" : "s",
158 __entry->no_interrupt ? "i" : "I",
163 DEFINE_EVENT(dwc3_log_request, dwc3_alloc_request,
164 TP_PROTO(struct dwc3_request *req),
168 DEFINE_EVENT(dwc3_log_request, dwc3_free_request,
169 TP_PROTO(struct dwc3_request *req),
173 DEFINE_EVENT(dwc3_log_request, dwc3_ep_queue,
174 TP_PROTO(struct dwc3_request *req),
178 DEFINE_EVENT(dwc3_log_request, dwc3_ep_dequeue,
179 TP_PROTO(struct dwc3_request *req),
183 DEFINE_EVENT(dwc3_log_request, dwc3_gadget_giveback,
184 TP_PROTO(struct dwc3_request *req),
188 DECLARE_EVENT_CLASS(dwc3_log_generic_cmd,
189 TP_PROTO(unsigned int cmd, u32 param, int status),
190 TP_ARGS(cmd, param, status),
192 __field(unsigned int, cmd)
198 __entry->param = param;
199 __entry->status = status;
201 TP_printk("cmd '%s' [%d] param %08x --> status: %s",
202 dwc3_gadget_generic_cmd_string(__entry->cmd),
203 __entry->cmd, __entry->param,
204 dwc3_gadget_generic_cmd_status_string(__entry->status)
208 DEFINE_EVENT(dwc3_log_generic_cmd, dwc3_gadget_generic_cmd,
209 TP_PROTO(unsigned int cmd, u32 param, int status),
210 TP_ARGS(cmd, param, status)
213 DECLARE_EVENT_CLASS(dwc3_log_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),
218 __dynamic_array(char, name, DWC3_MSG_MAX)
219 __field(unsigned int, cmd)
223 __field(int, cmd_status)
226 snprintf(__get_str(name), DWC3_MSG_MAX, "%s", dep->name);
228 __entry->param0 = params->param0;
229 __entry->param1 = params->param1;
230 __entry->param2 = params->param2;
231 __entry->cmd_status = cmd_status;
233 TP_printk("%s: cmd '%s' [%d] params %08x %08x %08x --> status: %s",
234 __get_str(name), dwc3_gadget_ep_cmd_string(__entry->cmd),
235 __entry->cmd, __entry->param0,
236 __entry->param1, __entry->param2,
237 dwc3_ep_cmd_status_string(__entry->cmd_status)
241 DEFINE_EVENT(dwc3_log_gadget_ep_cmd, dwc3_gadget_ep_cmd,
242 TP_PROTO(struct dwc3_ep *dep, unsigned int cmd,
243 struct dwc3_gadget_ep_cmd_params *params, int cmd_status),
244 TP_ARGS(dep, cmd, params, cmd_status)
247 DECLARE_EVENT_CLASS(dwc3_log_trb,
248 TP_PROTO(struct dwc3_ep *dep, struct dwc3_trb *trb),
251 __dynamic_array(char, name, DWC3_MSG_MAX)
252 __field(struct dwc3_trb *, trb)
253 __field(u32, allocated)
262 snprintf(__get_str(name), DWC3_MSG_MAX, "%s", dep->name);
264 __entry->allocated = dep->allocated_requests;
265 __entry->queued = dep->queued_requests;
266 __entry->bpl = trb->bpl;
267 __entry->bph = trb->bph;
268 __entry->size = trb->size;
269 __entry->ctrl = trb->ctrl;
270 __entry->type = usb_endpoint_type(dep->endpoint.desc);
272 TP_printk("%s: %d/%d trb %p buf %08x%08x size %s%d ctrl %08x (%c%c%c%c:%c%c:%s)",
273 __get_str(name), __entry->queued, __entry->allocated,
274 __entry->trb, __entry->bph, __entry->bpl,
276 int pcm = ((__entry->size >> 24) & 3) + 1;
277 switch (__entry->type) {
278 case USB_ENDPOINT_XFER_INT:
279 case USB_ENDPOINT_XFER_ISOC:
294 DWC3_TRB_SIZE_LENGTH(__entry->size), __entry->ctrl,
295 __entry->ctrl & DWC3_TRB_CTRL_HWO ? 'H' : 'h',
296 __entry->ctrl & DWC3_TRB_CTRL_LST ? 'L' : 'l',
297 __entry->ctrl & DWC3_TRB_CTRL_CHN ? 'C' : 'c',
298 __entry->ctrl & DWC3_TRB_CTRL_CSP ? 'S' : 's',
299 __entry->ctrl & DWC3_TRB_CTRL_ISP_IMI ? 'S' : 's',
300 __entry->ctrl & DWC3_TRB_CTRL_IOC ? 'C' : 'c',
302 switch (__entry->ctrl & 0x3f0) {
303 case DWC3_TRBCTL_NORMAL:
306 case DWC3_TRBCTL_CONTROL_SETUP:
309 case DWC3_TRBCTL_CONTROL_STATUS2:
312 case DWC3_TRBCTL_CONTROL_STATUS3:
315 case DWC3_TRBCTL_CONTROL_DATA:
318 case DWC3_TRBCTL_ISOCHRONOUS_FIRST:
321 case DWC3_TRBCTL_ISOCHRONOUS:
324 case DWC3_TRBCTL_LINK_TRB:
334 DEFINE_EVENT(dwc3_log_trb, dwc3_prepare_trb,
335 TP_PROTO(struct dwc3_ep *dep, struct dwc3_trb *trb),
339 DEFINE_EVENT(dwc3_log_trb, dwc3_complete_trb,
340 TP_PROTO(struct dwc3_ep *dep, struct dwc3_trb *trb),
344 DECLARE_EVENT_CLASS(dwc3_log_ep,
345 TP_PROTO(struct dwc3_ep *dep),
348 __dynamic_array(char, name, DWC3_MSG_MAX)
349 __field(unsigned, maxpacket)
350 __field(unsigned, maxpacket_limit)
351 __field(unsigned, max_streams)
352 __field(unsigned, maxburst)
353 __field(unsigned, flags)
354 __field(unsigned, direction)
355 __field(u8, trb_enqueue)
356 __field(u8, trb_dequeue)
359 snprintf(__get_str(name), DWC3_MSG_MAX, "%s", dep->name);
360 __entry->maxpacket = dep->endpoint.maxpacket;
361 __entry->maxpacket_limit = dep->endpoint.maxpacket_limit;
362 __entry->max_streams = dep->endpoint.max_streams;
363 __entry->maxburst = dep->endpoint.maxburst;
364 __entry->flags = dep->flags;
365 __entry->direction = dep->direction;
366 __entry->trb_enqueue = dep->trb_enqueue;
367 __entry->trb_dequeue = dep->trb_dequeue;
369 TP_printk("%s: mps %d/%d streams %d burst %d ring %d/%d flags %c:%c%c%c%c%c:%c:%c",
370 __get_str(name), __entry->maxpacket,
371 __entry->maxpacket_limit, __entry->max_streams,
372 __entry->maxburst, __entry->trb_enqueue,
373 __entry->trb_dequeue,
374 __entry->flags & DWC3_EP_ENABLED ? 'E' : 'e',
375 __entry->flags & DWC3_EP_STALL ? 'S' : 's',
376 __entry->flags & DWC3_EP_WEDGE ? 'W' : 'w',
377 __entry->flags & DWC3_EP_BUSY ? 'B' : 'b',
378 __entry->flags & DWC3_EP_PENDING_REQUEST ? 'P' : 'p',
379 __entry->flags & DWC3_EP_MISSED_ISOC ? 'M' : 'm',
380 __entry->flags & DWC3_EP_END_TRANSFER_PENDING ? 'E' : 'e',
381 __entry->direction ? '<' : '>'
385 DEFINE_EVENT(dwc3_log_ep, dwc3_gadget_ep_enable,
386 TP_PROTO(struct dwc3_ep *dep),
390 DEFINE_EVENT(dwc3_log_ep, dwc3_gadget_ep_disable,
391 TP_PROTO(struct dwc3_ep *dep),
395 #endif /* __DWC3_TRACE_H */
397 /* this part has to be here */
399 #undef TRACE_INCLUDE_PATH
400 #define TRACE_INCLUDE_PATH .
402 #undef TRACE_INCLUDE_FILE
403 #define TRACE_INCLUDE_FILE trace
405 #include <trace/define_trace.h>