xref: /OK3568_Linux_fs/kernel/drivers/infiniband/hw/hfi1/trace_rx.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * Copyright(c) 2015 - 2018 Intel Corporation.
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * This file is provided under a dual BSD/GPLv2 license.  When using or
5*4882a593Smuzhiyun  * redistributing this file, you may do so under either license.
6*4882a593Smuzhiyun  *
7*4882a593Smuzhiyun  * GPL LICENSE SUMMARY
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  * This program is free software; you can redistribute it and/or modify
10*4882a593Smuzhiyun  * it under the terms of version 2 of the GNU General Public License as
11*4882a593Smuzhiyun  * published by the Free Software Foundation.
12*4882a593Smuzhiyun  *
13*4882a593Smuzhiyun  * This program is distributed in the hope that it will be useful, but
14*4882a593Smuzhiyun  * WITHOUT ANY WARRANTY; without even the implied warranty of
15*4882a593Smuzhiyun  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16*4882a593Smuzhiyun  * General Public License for more details.
17*4882a593Smuzhiyun  *
18*4882a593Smuzhiyun  * BSD LICENSE
19*4882a593Smuzhiyun  *
20*4882a593Smuzhiyun  * Redistribution and use in source and binary forms, with or without
21*4882a593Smuzhiyun  * modification, are permitted provided that the following conditions
22*4882a593Smuzhiyun  * are met:
23*4882a593Smuzhiyun  *
24*4882a593Smuzhiyun  *  - Redistributions of source code must retain the above copyright
25*4882a593Smuzhiyun  *    notice, this list of conditions and the following disclaimer.
26*4882a593Smuzhiyun  *  - Redistributions in binary form must reproduce the above copyright
27*4882a593Smuzhiyun  *    notice, this list of conditions and the following disclaimer in
28*4882a593Smuzhiyun  *    the documentation and/or other materials provided with the
29*4882a593Smuzhiyun  *    distribution.
30*4882a593Smuzhiyun  *  - Neither the name of Intel Corporation nor the names of its
31*4882a593Smuzhiyun  *    contributors may be used to endorse or promote products derived
32*4882a593Smuzhiyun  *    from this software without specific prior written permission.
33*4882a593Smuzhiyun  *
34*4882a593Smuzhiyun  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35*4882a593Smuzhiyun  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36*4882a593Smuzhiyun  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37*4882a593Smuzhiyun  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38*4882a593Smuzhiyun  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39*4882a593Smuzhiyun  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40*4882a593Smuzhiyun  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41*4882a593Smuzhiyun  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42*4882a593Smuzhiyun  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43*4882a593Smuzhiyun  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44*4882a593Smuzhiyun  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45*4882a593Smuzhiyun  *
46*4882a593Smuzhiyun  */
47*4882a593Smuzhiyun #if !defined(__HFI1_TRACE_RX_H) || defined(TRACE_HEADER_MULTI_READ)
48*4882a593Smuzhiyun #define __HFI1_TRACE_RX_H
49*4882a593Smuzhiyun 
50*4882a593Smuzhiyun #include <linux/tracepoint.h>
51*4882a593Smuzhiyun #include <linux/trace_seq.h>
52*4882a593Smuzhiyun 
53*4882a593Smuzhiyun #include "hfi.h"
54*4882a593Smuzhiyun 
55*4882a593Smuzhiyun #define tidtype_name(type) { PT_##type, #type }
56*4882a593Smuzhiyun #define show_tidtype(type)                   \
57*4882a593Smuzhiyun __print_symbolic(type,                       \
58*4882a593Smuzhiyun 	tidtype_name(EXPECTED),              \
59*4882a593Smuzhiyun 	tidtype_name(EAGER),                 \
60*4882a593Smuzhiyun 	tidtype_name(INVALID))               \
61*4882a593Smuzhiyun 
62*4882a593Smuzhiyun #undef TRACE_SYSTEM
63*4882a593Smuzhiyun #define TRACE_SYSTEM hfi1_rx
64*4882a593Smuzhiyun 
65*4882a593Smuzhiyun TRACE_EVENT(hfi1_rcvhdr,
66*4882a593Smuzhiyun 	    TP_PROTO(struct hfi1_packet *packet),
67*4882a593Smuzhiyun 	    TP_ARGS(packet),
68*4882a593Smuzhiyun 	    TP_STRUCT__entry(DD_DEV_ENTRY(packet->rcd->dd)
69*4882a593Smuzhiyun 			     __field(u64, eflags)
70*4882a593Smuzhiyun 			     __field(u32, ctxt)
71*4882a593Smuzhiyun 			     __field(u32, etype)
72*4882a593Smuzhiyun 			     __field(u32, hlen)
73*4882a593Smuzhiyun 			     __field(u32, tlen)
74*4882a593Smuzhiyun 			     __field(u32, updegr)
75*4882a593Smuzhiyun 			     __field(u32, etail)
76*4882a593Smuzhiyun 			     ),
77*4882a593Smuzhiyun 	     TP_fast_assign(DD_DEV_ASSIGN(packet->rcd->dd);
78*4882a593Smuzhiyun 			    __entry->eflags = rhf_err_flags(packet->rhf);
79*4882a593Smuzhiyun 			    __entry->ctxt = packet->rcd->ctxt;
80*4882a593Smuzhiyun 			    __entry->etype = packet->etype;
81*4882a593Smuzhiyun 			    __entry->hlen = packet->hlen;
82*4882a593Smuzhiyun 			    __entry->tlen = packet->tlen;
83*4882a593Smuzhiyun 			    __entry->updegr = packet->updegr;
84*4882a593Smuzhiyun 			    __entry->etail = rhf_egr_index(packet->rhf);
85*4882a593Smuzhiyun 			    ),
86*4882a593Smuzhiyun 	     TP_printk(
87*4882a593Smuzhiyun 		"[%s] ctxt %d eflags 0x%llx etype %d,%s hlen %d tlen %d updegr %d etail %d",
88*4882a593Smuzhiyun 		__get_str(dev),
89*4882a593Smuzhiyun 		__entry->ctxt,
90*4882a593Smuzhiyun 		__entry->eflags,
91*4882a593Smuzhiyun 		__entry->etype, show_packettype(__entry->etype),
92*4882a593Smuzhiyun 		__entry->hlen,
93*4882a593Smuzhiyun 		__entry->tlen,
94*4882a593Smuzhiyun 		__entry->updegr,
95*4882a593Smuzhiyun 		__entry->etail
96*4882a593Smuzhiyun 		)
97*4882a593Smuzhiyun );
98*4882a593Smuzhiyun 
99*4882a593Smuzhiyun TRACE_EVENT(hfi1_receive_interrupt,
100*4882a593Smuzhiyun 	    TP_PROTO(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd),
101*4882a593Smuzhiyun 	    TP_ARGS(dd, rcd),
102*4882a593Smuzhiyun 	    TP_STRUCT__entry(DD_DEV_ENTRY(dd)
103*4882a593Smuzhiyun 			     __field(u32, ctxt)
104*4882a593Smuzhiyun 			     __field(u8, slow_path)
105*4882a593Smuzhiyun 			     __field(u8, dma_rtail)
106*4882a593Smuzhiyun 			     ),
107*4882a593Smuzhiyun 	    TP_fast_assign(DD_DEV_ASSIGN(dd);
108*4882a593Smuzhiyun 			__entry->ctxt = rcd->ctxt;
109*4882a593Smuzhiyun 			__entry->slow_path = hfi1_is_slowpath(rcd);
110*4882a593Smuzhiyun 			__entry->dma_rtail = get_dma_rtail_setting(rcd);
111*4882a593Smuzhiyun 			),
112*4882a593Smuzhiyun 	    TP_printk("[%s] ctxt %d SlowPath: %d DmaRtail: %d",
113*4882a593Smuzhiyun 		      __get_str(dev),
114*4882a593Smuzhiyun 		      __entry->ctxt,
115*4882a593Smuzhiyun 		      __entry->slow_path,
116*4882a593Smuzhiyun 		      __entry->dma_rtail
117*4882a593Smuzhiyun 		      )
118*4882a593Smuzhiyun );
119*4882a593Smuzhiyun 
120*4882a593Smuzhiyun TRACE_EVENT(hfi1_mmu_invalidate,
121*4882a593Smuzhiyun 	    TP_PROTO(unsigned int ctxt, u16 subctxt, const char *type,
122*4882a593Smuzhiyun 		     unsigned long start, unsigned long end),
123*4882a593Smuzhiyun 	    TP_ARGS(ctxt, subctxt, type, start, end),
124*4882a593Smuzhiyun 	    TP_STRUCT__entry(
125*4882a593Smuzhiyun 			     __field(unsigned int, ctxt)
126*4882a593Smuzhiyun 			     __field(u16, subctxt)
127*4882a593Smuzhiyun 			     __string(type, type)
128*4882a593Smuzhiyun 			     __field(unsigned long, start)
129*4882a593Smuzhiyun 			     __field(unsigned long, end)
130*4882a593Smuzhiyun 			     ),
131*4882a593Smuzhiyun 	    TP_fast_assign(
132*4882a593Smuzhiyun 			__entry->ctxt = ctxt;
133*4882a593Smuzhiyun 			__entry->subctxt = subctxt;
134*4882a593Smuzhiyun 			__assign_str(type, type);
135*4882a593Smuzhiyun 			__entry->start = start;
136*4882a593Smuzhiyun 			__entry->end = end;
137*4882a593Smuzhiyun 	    ),
138*4882a593Smuzhiyun 	    TP_printk("[%3u:%02u] MMU Invalidate (%s) 0x%lx - 0x%lx",
139*4882a593Smuzhiyun 		      __entry->ctxt,
140*4882a593Smuzhiyun 		      __entry->subctxt,
141*4882a593Smuzhiyun 		      __get_str(type),
142*4882a593Smuzhiyun 		      __entry->start,
143*4882a593Smuzhiyun 		      __entry->end
144*4882a593Smuzhiyun 		      )
145*4882a593Smuzhiyun 	    );
146*4882a593Smuzhiyun 
147*4882a593Smuzhiyun #endif /* __HFI1_TRACE_RX_H */
148*4882a593Smuzhiyun 
149*4882a593Smuzhiyun #undef TRACE_INCLUDE_PATH
150*4882a593Smuzhiyun #undef TRACE_INCLUDE_FILE
151*4882a593Smuzhiyun #define TRACE_INCLUDE_PATH .
152*4882a593Smuzhiyun #define TRACE_INCLUDE_FILE trace_rx
153*4882a593Smuzhiyun #include <trace/define_trace.h>
154