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_io,
31 TP_PROTO(void *base, u32 offset, u32 value),
32 TP_ARGS(base, offset, value),
40 __entry->offset = offset;
41 __entry->value = value;
43 TP_printk("addr %p value %08x", __entry->base + __entry->offset,
47 DEFINE_EVENT(dwc3_log_io, dwc3_readl,
48 TP_PROTO(void *base, u32 offset, u32 value),
49 TP_ARGS(base, offset, value)
52 DEFINE_EVENT(dwc3_log_io, dwc3_writel,
53 TP_PROTO(void *base, u32 offset, u32 value),
54 TP_ARGS(base, offset, value)
57 DECLARE_EVENT_CLASS(dwc3_log_event,
58 TP_PROTO(u32 event, struct dwc3 *dwc),
62 __field(u32, ep0state)
65 __entry->event = event;
66 __entry->ep0state = dwc->ep0state;
68 TP_printk("event (%08x): %s", __entry->event,
69 dwc3_decode_event(__entry->event, __entry->ep0state))
72 DEFINE_EVENT(dwc3_log_event, dwc3_event,
73 TP_PROTO(u32 event, struct dwc3 *dwc),
77 DECLARE_EVENT_CLASS(dwc3_log_ctrl,
78 TP_PROTO(struct usb_ctrlrequest *ctrl),
81 __field(__u8, bRequestType)
82 __field(__u8, bRequest)
83 __field(__u16, wValue)
84 __field(__u16, wIndex)
85 __field(__u16, wLength)
88 __entry->bRequestType = ctrl->bRequestType;
89 __entry->bRequest = ctrl->bRequest;
90 __entry->wValue = le16_to_cpu(ctrl->wValue);
91 __entry->wIndex = le16_to_cpu(ctrl->wIndex);
92 __entry->wLength = le16_to_cpu(ctrl->wLength);
94 TP_printk("bRequestType %02x bRequest %02x wValue %04x wIndex %04x wLength %d",
95 __entry->bRequestType, __entry->bRequest,
96 __entry->wValue, __entry->wIndex,
101 DEFINE_EVENT(dwc3_log_ctrl, dwc3_ctrl_req,
102 TP_PROTO(struct usb_ctrlrequest *ctrl),
106 DECLARE_EVENT_CLASS(dwc3_log_request,
107 TP_PROTO(struct dwc3_request *req),
110 __dynamic_array(char, name, DWC3_MSG_MAX)
111 __field(struct dwc3_request *, req)
112 __field(unsigned, actual)
113 __field(unsigned, length)
116 __field(int, short_not_ok)
117 __field(int, no_interrupt)
120 snprintf(__get_str(name), DWC3_MSG_MAX, "%s", req->dep->name);
122 __entry->actual = req->request.actual;
123 __entry->length = req->request.length;
124 __entry->status = req->request.status;
125 __entry->zero = req->request.zero;
126 __entry->short_not_ok = req->request.short_not_ok;
127 __entry->no_interrupt = req->request.no_interrupt;
129 TP_printk("%s: req %p length %u/%u %s%s%s ==> %d",
130 __get_str(name), __entry->req, __entry->actual, __entry->length,
131 __entry->zero ? "Z" : "z",
132 __entry->short_not_ok ? "S" : "s",
133 __entry->no_interrupt ? "i" : "I",
138 DEFINE_EVENT(dwc3_log_request, dwc3_alloc_request,
139 TP_PROTO(struct dwc3_request *req),
143 DEFINE_EVENT(dwc3_log_request, dwc3_free_request,
144 TP_PROTO(struct dwc3_request *req),
148 DEFINE_EVENT(dwc3_log_request, dwc3_ep_queue,
149 TP_PROTO(struct dwc3_request *req),
153 DEFINE_EVENT(dwc3_log_request, dwc3_ep_dequeue,
154 TP_PROTO(struct dwc3_request *req),
158 DEFINE_EVENT(dwc3_log_request, dwc3_gadget_giveback,
159 TP_PROTO(struct dwc3_request *req),
163 DECLARE_EVENT_CLASS(dwc3_log_generic_cmd,
164 TP_PROTO(unsigned int cmd, u32 param, int status),
165 TP_ARGS(cmd, param, status),
167 __field(unsigned int, cmd)
173 __entry->param = param;
174 __entry->status = status;
176 TP_printk("cmd '%s' [%x] param %08x --> status: %s",
177 dwc3_gadget_generic_cmd_string(__entry->cmd),
178 __entry->cmd, __entry->param,
179 dwc3_gadget_generic_cmd_status_string(__entry->status)
183 DEFINE_EVENT(dwc3_log_generic_cmd, dwc3_gadget_generic_cmd,
184 TP_PROTO(unsigned int cmd, u32 param, int status),
185 TP_ARGS(cmd, param, status)
188 DECLARE_EVENT_CLASS(dwc3_log_gadget_ep_cmd,
189 TP_PROTO(struct dwc3_ep *dep, unsigned int cmd,
190 struct dwc3_gadget_ep_cmd_params *params, int cmd_status),
191 TP_ARGS(dep, cmd, params, cmd_status),
193 __dynamic_array(char, name, DWC3_MSG_MAX)
194 __field(unsigned int, cmd)
198 __field(int, cmd_status)
201 snprintf(__get_str(name), DWC3_MSG_MAX, "%s", dep->name);
203 __entry->param0 = params->param0;
204 __entry->param1 = params->param1;
205 __entry->param2 = params->param2;
206 __entry->cmd_status = cmd_status;
208 TP_printk("%s: cmd '%s' [%d] params %08x %08x %08x --> status: %s",
209 __get_str(name), dwc3_gadget_ep_cmd_string(__entry->cmd),
210 __entry->cmd, __entry->param0,
211 __entry->param1, __entry->param2,
212 dwc3_ep_cmd_status_string(__entry->cmd_status)
216 DEFINE_EVENT(dwc3_log_gadget_ep_cmd, dwc3_gadget_ep_cmd,
217 TP_PROTO(struct dwc3_ep *dep, unsigned int cmd,
218 struct dwc3_gadget_ep_cmd_params *params, int cmd_status),
219 TP_ARGS(dep, cmd, params, cmd_status)
222 DECLARE_EVENT_CLASS(dwc3_log_trb,
223 TP_PROTO(struct dwc3_ep *dep, struct dwc3_trb *trb),
226 __dynamic_array(char, name, DWC3_MSG_MAX)
227 __field(struct dwc3_trb *, trb)
228 __field(u32, allocated)
237 snprintf(__get_str(name), DWC3_MSG_MAX, "%s", dep->name);
239 __entry->allocated = dep->allocated_requests;
240 __entry->queued = dep->queued_requests;
241 __entry->bpl = trb->bpl;
242 __entry->bph = trb->bph;
243 __entry->size = trb->size;
244 __entry->ctrl = trb->ctrl;
245 __entry->type = usb_endpoint_type(dep->endpoint.desc);
247 TP_printk("%s: %d/%d trb %p buf %08x%08x size %s%d ctrl %08x (%c%c%c%c:%c%c:%s)",
248 __get_str(name), __entry->queued, __entry->allocated,
249 __entry->trb, __entry->bph, __entry->bpl,
251 int pcm = ((__entry->size >> 24) & 3) + 1;
252 switch (__entry->type) {
253 case USB_ENDPOINT_XFER_INT:
254 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 __dynamic_array(char, name, DWC3_MSG_MAX)
295 __field(unsigned, maxpacket)
296 __field(unsigned, maxpacket_limit)
297 __field(unsigned, max_streams)
298 __field(unsigned, maxburst)
299 __field(unsigned, flags)
300 __field(unsigned, direction)
301 __field(u8, trb_enqueue)
302 __field(u8, trb_dequeue)
305 snprintf(__get_str(name), DWC3_MSG_MAX, "%s", 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:%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_BUSY ? 'B' : 'b',
324 __entry->flags & DWC3_EP_PENDING_REQUEST ? 'P' : 'p',
325 __entry->flags & DWC3_EP_MISSED_ISOC ? 'M' : 'm',
326 __entry->flags & DWC3_EP_END_TRANSFER_PENDING ? 'E' : 'e',
327 __entry->direction ? '<' : '>'
331 DEFINE_EVENT(dwc3_log_ep, dwc3_gadget_ep_enable,
332 TP_PROTO(struct dwc3_ep *dep),
336 DEFINE_EVENT(dwc3_log_ep, dwc3_gadget_ep_disable,
337 TP_PROTO(struct dwc3_ep *dep),
341 #endif /* __DWC3_TRACE_H */
343 /* this part has to be here */
345 #undef TRACE_INCLUDE_PATH
346 #define TRACE_INCLUDE_PATH .
348 #undef TRACE_INCLUDE_FILE
349 #define TRACE_INCLUDE_FILE trace
351 #include <trace/define_trace.h>