blob: cb998ba50fea9dc4912a925b60878379fe967f78 [file] [log] [blame]
Nishad Kamdarb33f69f2020-03-28 15:34:46 +05301/* SPDX-License-Identifier: GPL-2.0 */
Aditya Srivastava27088e002021-03-29 19:21:08 +05302/*
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -05003 * trace.h - DesignWare USB3 DRD Controller Trace Support
4 *
Alexander A. Klimov10623b82020-07-11 15:58:04 +02005 * Copyright (C) 2014 Texas Instruments Incorporated - https://www.ti.com
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -05006 *
7 * Author: Felipe Balbi <balbi@ti.com>
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -05008 */
9
10#undef TRACE_SYSTEM
11#define TRACE_SYSTEM dwc3
12
13#if !defined(__DWC3_TRACE_H) || defined(TRACE_HEADER_MULTI_READ)
14#define __DWC3_TRACE_H
15
16#include <linux/types.h>
17#include <linux/tracepoint.h>
18#include <asm/byteorder.h>
19#include "core.h"
20#include "debug.h"
21
Felipe Balbi4dd5a692016-09-30 15:52:19 +030022DECLARE_EVENT_CLASS(dwc3_log_io,
23 TP_PROTO(void *base, u32 offset, u32 value),
24 TP_ARGS(base, offset, value),
25 TP_STRUCT__entry(
26 __field(void *, base)
27 __field(u32, offset)
28 __field(u32, value)
29 ),
30 TP_fast_assign(
31 __entry->base = base;
32 __entry->offset = offset;
33 __entry->value = value;
34 ),
Thinh Nguyen3fc63d02021-03-24 18:53:26 -070035 TP_printk("addr %p offset %04x value %08x",
36 __entry->base + __entry->offset,
37 __entry->offset,
38 __entry->value)
Felipe Balbi4dd5a692016-09-30 15:52:19 +030039);
40
41DEFINE_EVENT(dwc3_log_io, dwc3_readl,
Vincent Pelletier204ec1a2017-12-01 00:16:31 +000042 TP_PROTO(void __iomem *base, u32 offset, u32 value),
Felipe Balbi4dd5a692016-09-30 15:52:19 +030043 TP_ARGS(base, offset, value)
44);
45
46DEFINE_EVENT(dwc3_log_io, dwc3_writel,
Vincent Pelletier204ec1a2017-12-01 00:16:31 +000047 TP_PROTO(void __iomem *base, u32 offset, u32 value),
Felipe Balbi4dd5a692016-09-30 15:52:19 +030048 TP_ARGS(base, offset, value)
49);
50
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -050051DECLARE_EVENT_CLASS(dwc3_log_event,
Felipe Balbi43c96be2016-09-26 13:23:34 +030052 TP_PROTO(u32 event, struct dwc3 *dwc),
53 TP_ARGS(event, dwc),
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -050054 TP_STRUCT__entry(
55 __field(u32, event)
Felipe Balbi43c96be2016-09-26 13:23:34 +030056 __field(u32, ep0state)
Felipe Balbi3587f362017-04-28 11:28:35 +030057 __dynamic_array(char, str, DWC3_MSG_MAX)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -050058 ),
59 TP_fast_assign(
60 __entry->event = event;
Felipe Balbi43c96be2016-09-26 13:23:34 +030061 __entry->ep0state = dwc->ep0state;
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -050062 ),
Felipe Balbif75cacc2016-05-23 11:10:08 +030063 TP_printk("event (%08x): %s", __entry->event,
Felipe Balbi7790b352019-02-04 15:43:38 +020064 dwc3_decode_event(__get_str(str), DWC3_MSG_MAX,
65 __entry->event, __entry->ep0state))
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -050066);
67
68DEFINE_EVENT(dwc3_log_event, dwc3_event,
Felipe Balbi43c96be2016-09-26 13:23:34 +030069 TP_PROTO(u32 event, struct dwc3 *dwc),
70 TP_ARGS(event, dwc)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -050071);
72
73DECLARE_EVENT_CLASS(dwc3_log_ctrl,
74 TP_PROTO(struct usb_ctrlrequest *ctrl),
75 TP_ARGS(ctrl),
76 TP_STRUCT__entry(
Felipe Balbi4ac4fc92014-09-17 16:28:38 -050077 __field(__u8, bRequestType)
78 __field(__u8, bRequest)
John Youn96bedb62016-05-23 11:32:47 -070079 __field(__u16, wValue)
80 __field(__u16, wIndex)
81 __field(__u16, wLength)
Felipe Balbiaf324232017-04-26 16:09:09 +030082 __dynamic_array(char, str, DWC3_MSG_MAX)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -050083 ),
84 TP_fast_assign(
Felipe Balbi4ac4fc92014-09-17 16:28:38 -050085 __entry->bRequestType = ctrl->bRequestType;
86 __entry->bRequest = ctrl->bRequest;
John Youn96bedb62016-05-23 11:32:47 -070087 __entry->wValue = le16_to_cpu(ctrl->wValue);
88 __entry->wIndex = le16_to_cpu(ctrl->wIndex);
89 __entry->wLength = le16_to_cpu(ctrl->wLength);
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -050090 ),
Pawel Laszczak91f255a2019-08-26 12:19:27 +010091 TP_printk("%s", usb_decode_ctrl(__get_str(str), DWC3_MSG_MAX,
Felipe Balbi7790b352019-02-04 15:43:38 +020092 __entry->bRequestType,
Felipe Balbiaf324232017-04-26 16:09:09 +030093 __entry->bRequest, __entry->wValue,
94 __entry->wIndex, __entry->wLength)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -050095 )
96);
97
98DEFINE_EVENT(dwc3_log_ctrl, dwc3_ctrl_req,
99 TP_PROTO(struct usb_ctrlrequest *ctrl),
100 TP_ARGS(ctrl)
101);
102
103DECLARE_EVENT_CLASS(dwc3_log_request,
104 TP_PROTO(struct dwc3_request *req),
105 TP_ARGS(req),
106 TP_STRUCT__entry(
Felipe Balbie42f09b2017-04-28 12:54:52 +0300107 __string(name, req->dep->name)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500108 __field(struct dwc3_request *, req)
Felipe Balbi159fdf22020-08-13 08:32:00 +0300109 __field(unsigned int, actual)
110 __field(unsigned int, length)
Felipe Balbi4ac4fc92014-09-17 16:28:38 -0500111 __field(int, status)
Felipe Balbi46a01422015-12-03 15:27:32 -0600112 __field(int, zero)
113 __field(int, short_not_ok)
114 __field(int, no_interrupt)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500115 ),
116 TP_fast_assign(
Felipe Balbie42f09b2017-04-28 12:54:52 +0300117 __assign_str(name, req->dep->name);
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500118 __entry->req = req;
Felipe Balbi4ac4fc92014-09-17 16:28:38 -0500119 __entry->actual = req->request.actual;
120 __entry->length = req->request.length;
121 __entry->status = req->request.status;
Felipe Balbi46a01422015-12-03 15:27:32 -0600122 __entry->zero = req->request.zero;
123 __entry->short_not_ok = req->request.short_not_ok;
124 __entry->no_interrupt = req->request.no_interrupt;
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500125 ),
Felipe Balbi46a01422015-12-03 15:27:32 -0600126 TP_printk("%s: req %p length %u/%u %s%s%s ==> %d",
Felipe Balbi4ac4fc92014-09-17 16:28:38 -0500127 __get_str(name), __entry->req, __entry->actual, __entry->length,
Felipe Balbi46a01422015-12-03 15:27:32 -0600128 __entry->zero ? "Z" : "z",
129 __entry->short_not_ok ? "S" : "s",
130 __entry->no_interrupt ? "i" : "I",
Felipe Balbi4ac4fc92014-09-17 16:28:38 -0500131 __entry->status
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500132 )
133);
134
135DEFINE_EVENT(dwc3_log_request, dwc3_alloc_request,
136 TP_PROTO(struct dwc3_request *req),
137 TP_ARGS(req)
138);
139
140DEFINE_EVENT(dwc3_log_request, dwc3_free_request,
141 TP_PROTO(struct dwc3_request *req),
142 TP_ARGS(req)
143);
144
145DEFINE_EVENT(dwc3_log_request, dwc3_ep_queue,
146 TP_PROTO(struct dwc3_request *req),
147 TP_ARGS(req)
148);
149
150DEFINE_EVENT(dwc3_log_request, dwc3_ep_dequeue,
151 TP_PROTO(struct dwc3_request *req),
152 TP_ARGS(req)
153);
154
155DEFINE_EVENT(dwc3_log_request, dwc3_gadget_giveback,
156 TP_PROTO(struct dwc3_request *req),
157 TP_ARGS(req)
158);
159
160DECLARE_EVENT_CLASS(dwc3_log_generic_cmd,
Felipe Balbi71f7e702016-05-23 14:16:19 +0300161 TP_PROTO(unsigned int cmd, u32 param, int status),
162 TP_ARGS(cmd, param, status),
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500163 TP_STRUCT__entry(
164 __field(unsigned int, cmd)
165 __field(u32, param)
Felipe Balbi71f7e702016-05-23 14:16:19 +0300166 __field(int, status)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500167 ),
168 TP_fast_assign(
169 __entry->cmd = cmd;
170 __entry->param = param;
Felipe Balbi71f7e702016-05-23 14:16:19 +0300171 __entry->status = status;
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500172 ),
Felipe Balbiaad7c252017-03-22 13:03:13 +0200173 TP_printk("cmd '%s' [%x] param %08x --> status: %s",
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500174 dwc3_gadget_generic_cmd_string(__entry->cmd),
Felipe Balbi71f7e702016-05-23 14:16:19 +0300175 __entry->cmd, __entry->param,
176 dwc3_gadget_generic_cmd_status_string(__entry->status)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500177 )
178);
179
180DEFINE_EVENT(dwc3_log_generic_cmd, dwc3_gadget_generic_cmd,
Felipe Balbi71f7e702016-05-23 14:16:19 +0300181 TP_PROTO(unsigned int cmd, u32 param, int status),
182 TP_ARGS(cmd, param, status)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500183);
184
185DECLARE_EVENT_CLASS(dwc3_log_gadget_ep_cmd,
186 TP_PROTO(struct dwc3_ep *dep, unsigned int cmd,
Felipe Balbi0933df12016-05-23 14:02:33 +0300187 struct dwc3_gadget_ep_cmd_params *params, int cmd_status),
188 TP_ARGS(dep, cmd, params, cmd_status),
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500189 TP_STRUCT__entry(
Felipe Balbie42f09b2017-04-28 12:54:52 +0300190 __string(name, dep->name)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500191 __field(unsigned int, cmd)
Felipe Balbia4722fd32014-11-20 10:12:32 -0600192 __field(u32, param0)
193 __field(u32, param1)
194 __field(u32, param2)
Felipe Balbi0933df12016-05-23 14:02:33 +0300195 __field(int, cmd_status)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500196 ),
197 TP_fast_assign(
Felipe Balbie42f09b2017-04-28 12:54:52 +0300198 __assign_str(name, dep->name);
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500199 __entry->cmd = cmd;
Felipe Balbia4722fd32014-11-20 10:12:32 -0600200 __entry->param0 = params->param0;
201 __entry->param1 = params->param1;
202 __entry->param2 = params->param2;
Felipe Balbi0933df12016-05-23 14:02:33 +0300203 __entry->cmd_status = cmd_status;
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500204 ),
Felipe Balbi15172652018-08-15 08:30:59 +0300205 TP_printk("%s: cmd '%s' [%x] params %08x %08x %08x --> status: %s",
Felipe Balbi4ac4fc92014-09-17 16:28:38 -0500206 __get_str(name), dwc3_gadget_ep_cmd_string(__entry->cmd),
Felipe Balbia4722fd32014-11-20 10:12:32 -0600207 __entry->cmd, __entry->param0,
Felipe Balbi0933df12016-05-23 14:02:33 +0300208 __entry->param1, __entry->param2,
209 dwc3_ep_cmd_status_string(__entry->cmd_status)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500210 )
211);
212
213DEFINE_EVENT(dwc3_log_gadget_ep_cmd, dwc3_gadget_ep_cmd,
214 TP_PROTO(struct dwc3_ep *dep, unsigned int cmd,
Felipe Balbi0933df12016-05-23 14:02:33 +0300215 struct dwc3_gadget_ep_cmd_params *params, int cmd_status),
216 TP_ARGS(dep, cmd, params, cmd_status)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500217);
218
219DECLARE_EVENT_CLASS(dwc3_log_trb,
220 TP_PROTO(struct dwc3_ep *dep, struct dwc3_trb *trb),
221 TP_ARGS(dep, trb),
222 TP_STRUCT__entry(
Felipe Balbie42f09b2017-04-28 12:54:52 +0300223 __string(name, dep->name)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500224 __field(struct dwc3_trb *, trb)
Felipe Balbi4ac4fc92014-09-17 16:28:38 -0500225 __field(u32, bpl)
226 __field(u32, bph)
227 __field(u32, size)
228 __field(u32, ctrl)
Felipe Balbifa8d9652016-09-28 14:58:33 +0300229 __field(u32, type)
Felipe Balbi30ad6272020-01-29 09:20:19 +0200230 __field(u32, enqueue)
231 __field(u32, dequeue)
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500232 ),
233 TP_fast_assign(
Felipe Balbie42f09b2017-04-28 12:54:52 +0300234 __assign_str(name, dep->name);
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500235 __entry->trb = trb;
Felipe Balbi4ac4fc92014-09-17 16:28:38 -0500236 __entry->bpl = trb->bpl;
237 __entry->bph = trb->bph;
238 __entry->size = trb->size;
239 __entry->ctrl = trb->ctrl;
Felipe Balbifa8d9652016-09-28 14:58:33 +0300240 __entry->type = usb_endpoint_type(dep->endpoint.desc);
Felipe Balbi30ad6272020-01-29 09:20:19 +0200241 __entry->enqueue = dep->trb_enqueue;
242 __entry->dequeue = dep->trb_dequeue;
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500243 ),
Felipe Balbi30ad6272020-01-29 09:20:19 +0200244 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,
Felipe Balbifa8d9652016-09-28 14:58:33 +0300247 ({char *s;
248 int pcm = ((__entry->size >> 24) & 3) + 1;
Felipe Balbi159fdf22020-08-13 08:32:00 +0300249
Felipe Balbifa8d9652016-09-28 14:58:33 +0300250 switch (__entry->type) {
251 case USB_ENDPOINT_XFER_INT:
252 case USB_ENDPOINT_XFER_ISOC:
253 switch (pcm) {
254 case 1:
255 s = "1x ";
256 break;
257 case 2:
258 s = "2x ";
259 break;
260 case 3:
Andy Shevchenko54d48182018-12-03 11:28:47 +0200261 default:
Felipe Balbifa8d9652016-09-28 14:58:33 +0300262 s = "3x ";
263 break;
264 }
Andy Shevchenko54d48182018-12-03 11:28:47 +0200265 break;
Felipe Balbifa8d9652016-09-28 14:58:33 +0300266 default:
267 s = "";
268 } s; }),
269 DWC3_TRB_SIZE_LENGTH(__entry->size), __entry->ctrl,
Janusz Dziedzic22f2c612016-05-20 10:37:13 +0200270 __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',
Felipe Balbib5c7ed52017-03-31 14:44:09 +0300276 dwc3_trb_type_string(DWC3_TRBCTL_TYPE(__entry->ctrl))
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500277 )
278);
279
280DEFINE_EVENT(dwc3_log_trb, dwc3_prepare_trb,
281 TP_PROTO(struct dwc3_ep *dep, struct dwc3_trb *trb),
282 TP_ARGS(dep, trb)
283);
284
285DEFINE_EVENT(dwc3_log_trb, dwc3_complete_trb,
286 TP_PROTO(struct dwc3_ep *dep, struct dwc3_trb *trb),
287 TP_ARGS(dep, trb)
288);
289
Felipe Balbi2870e502016-11-03 13:53:29 +0200290DECLARE_EVENT_CLASS(dwc3_log_ep,
291 TP_PROTO(struct dwc3_ep *dep),
292 TP_ARGS(dep),
293 TP_STRUCT__entry(
Felipe Balbie42f09b2017-04-28 12:54:52 +0300294 __string(name, dep->name)
Felipe Balbi159fdf22020-08-13 08:32:00 +0300295 __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)
Felipe Balbi2870e502016-11-03 13:53:29 +0200301 __field(u8, trb_enqueue)
302 __field(u8, trb_dequeue)
303 ),
304 TP_fast_assign(
Felipe Balbie42f09b2017-04-28 12:54:52 +0300305 __assign_str(name, dep->name);
Felipe Balbi2870e502016-11-03 13:53:29 +0200306 __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;
314 ),
Felipe Balbi3aec9912019-01-21 13:08:44 +0200315 TP_printk("%s: mps %d/%d streams %d burst %d ring %d/%d flags %c:%c%c%c%c:%c",
Felipe Balbi2870e502016-11-03 13:53:29 +0200316 __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',
Felipe Balbi5f2e7972018-03-29 11:10:45 +0300323 __entry->flags & DWC3_EP_TRANSFER_STARTED ? 'B' : 'b',
Felipe Balbi2870e502016-11-03 13:53:29 +0200324 __entry->flags & DWC3_EP_PENDING_REQUEST ? 'P' : 'p',
Felipe Balbi2870e502016-11-03 13:53:29 +0200325 __entry->direction ? '<' : '>'
326 )
327);
328
329DEFINE_EVENT(dwc3_log_ep, dwc3_gadget_ep_enable,
330 TP_PROTO(struct dwc3_ep *dep),
331 TP_ARGS(dep)
332);
333
334DEFINE_EVENT(dwc3_log_ep, dwc3_gadget_ep_disable,
335 TP_PROTO(struct dwc3_ep *dep),
336 TP_ARGS(dep)
337);
338
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500339#endif /* __DWC3_TRACE_H */
340
341/* this part has to be here */
342
343#undef TRACE_INCLUDE_PATH
344#define TRACE_INCLUDE_PATH .
345
346#undef TRACE_INCLUDE_FILE
347#define TRACE_INCLUDE_FILE trace
348
349#include <trace/define_trace.h>