proc: Fix proc_sys_prune_dcache to hold a sb reference
[cris-mirror.git] / drivers / gpu / drm / i915 / gvt / trace.h
blob53a2d10cf3f12c02da61e23e9d62e6d0f1d4b0e9
1 /*
2 * Copyright © 2011-2016 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
23 * Authors:
24 * Jike Song <jike.song@intel.com>
26 * Contributors:
27 * Zhi Wang <zhi.a.wang@intel.com>
31 #if !defined(_GVT_TRACE_H_) || defined(TRACE_HEADER_MULTI_READ)
32 #define _GVT_TRACE_H_
34 #include <linux/types.h>
35 #include <linux/stringify.h>
36 #include <linux/tracepoint.h>
37 #include <asm/tsc.h>
39 #undef TRACE_SYSTEM
40 #define TRACE_SYSTEM gvt
42 TRACE_EVENT(spt_alloc,
43 TP_PROTO(int id, void *spt, int type, unsigned long mfn,
44 unsigned long gpt_gfn),
46 TP_ARGS(id, spt, type, mfn, gpt_gfn),
48 TP_STRUCT__entry(
49 __field(int, id)
50 __field(void *, spt)
51 __field(int, type)
52 __field(unsigned long, mfn)
53 __field(unsigned long, gpt_gfn)
56 TP_fast_assign(
57 __entry->id = id;
58 __entry->spt = spt;
59 __entry->type = type;
60 __entry->mfn = mfn;
61 __entry->gpt_gfn = gpt_gfn;
64 TP_printk("VM%d [alloc] spt %p type %d mfn 0x%lx gfn 0x%lx\n",
65 __entry->id,
66 __entry->spt,
67 __entry->type,
68 __entry->mfn,
69 __entry->gpt_gfn)
72 TRACE_EVENT(spt_free,
73 TP_PROTO(int id, void *spt, int type),
75 TP_ARGS(id, spt, type),
77 TP_STRUCT__entry(
78 __field(int, id)
79 __field(void *, spt)
80 __field(int, type)
83 TP_fast_assign(
84 __entry->id = id;
85 __entry->spt = spt;
86 __entry->type = type;
89 TP_printk("VM%u [free] spt %p type %d\n",
90 __entry->id,
91 __entry->spt,
92 __entry->type)
95 #define MAX_BUF_LEN 256
97 TRACE_EVENT(gma_index,
98 TP_PROTO(const char *prefix, unsigned long gma,
99 unsigned long index),
101 TP_ARGS(prefix, gma, index),
103 TP_STRUCT__entry(
104 __array(char, buf, MAX_BUF_LEN)
107 TP_fast_assign(
108 snprintf(__entry->buf, MAX_BUF_LEN,
109 "%s gma 0x%lx index 0x%lx\n", prefix, gma, index);
112 TP_printk("%s", __entry->buf)
115 TRACE_EVENT(gma_translate,
116 TP_PROTO(int id, char *type, int ring_id, int pt_level,
117 unsigned long gma, unsigned long gpa),
119 TP_ARGS(id, type, ring_id, pt_level, gma, gpa),
121 TP_STRUCT__entry(
122 __array(char, buf, MAX_BUF_LEN)
125 TP_fast_assign(
126 snprintf(__entry->buf, MAX_BUF_LEN,
127 "VM%d %s ring %d pt_level %d gma 0x%lx -> gpa 0x%lx\n",
128 id, type, ring_id, pt_level, gma, gpa);
131 TP_printk("%s", __entry->buf)
134 TRACE_EVENT(spt_refcount,
135 TP_PROTO(int id, char *action, void *spt, int before, int after),
137 TP_ARGS(id, action, spt, before, after),
139 TP_STRUCT__entry(
140 __array(char, buf, MAX_BUF_LEN)
143 TP_fast_assign(
144 snprintf(__entry->buf, MAX_BUF_LEN,
145 "VM%d [%s] spt %p before %d -> after %d\n",
146 id, action, spt, before, after);
149 TP_printk("%s", __entry->buf)
152 TRACE_EVENT(spt_change,
153 TP_PROTO(int id, char *action, void *spt, unsigned long gfn,
154 int type),
156 TP_ARGS(id, action, spt, gfn, type),
158 TP_STRUCT__entry(
159 __array(char, buf, MAX_BUF_LEN)
162 TP_fast_assign(
163 snprintf(__entry->buf, MAX_BUF_LEN,
164 "VM%d [%s] spt %p gfn 0x%lx type %d\n",
165 id, action, spt, gfn, type);
168 TP_printk("%s", __entry->buf)
171 TRACE_EVENT(gpt_change,
172 TP_PROTO(int id, const char *tag, void *spt, int type, u64 v,
173 unsigned long index),
175 TP_ARGS(id, tag, spt, type, v, index),
177 TP_STRUCT__entry(
178 __array(char, buf, MAX_BUF_LEN)
181 TP_fast_assign(
182 snprintf(__entry->buf, MAX_BUF_LEN,
183 "VM%d [%s] spt %p type %d entry 0x%llx index 0x%lx\n",
184 id, tag, spt, type, v, index);
187 TP_printk("%s", __entry->buf)
190 TRACE_EVENT(oos_change,
191 TP_PROTO(int id, const char *tag, int page_id, void *gpt, int type),
193 TP_ARGS(id, tag, page_id, gpt, type),
195 TP_STRUCT__entry(
196 __array(char, buf, MAX_BUF_LEN)
199 TP_fast_assign(
200 snprintf(__entry->buf, MAX_BUF_LEN,
201 "VM%d [oos %s] page id %d gpt %p type %d\n",
202 id, tag, page_id, gpt, type);
205 TP_printk("%s", __entry->buf)
208 TRACE_EVENT(oos_sync,
209 TP_PROTO(int id, int page_id, void *gpt, int type, u64 v,
210 unsigned long index),
212 TP_ARGS(id, page_id, gpt, type, v, index),
214 TP_STRUCT__entry(
215 __array(char, buf, MAX_BUF_LEN)
218 TP_fast_assign(
219 snprintf(__entry->buf, MAX_BUF_LEN,
220 "VM%d [oos sync] page id %d gpt %p type %d entry 0x%llx index 0x%lx\n",
221 id, page_id, gpt, type, v, index);
224 TP_printk("%s", __entry->buf)
227 #define MAX_CMD_STR_LEN 256
228 TRACE_EVENT(gvt_command,
229 TP_PROTO(u8 vm_id, u8 ring_id, u32 ip_gma, u32 *cmd_va, u32 cmd_len, bool ring_buffer_cmd, cycles_t cost_pre_cmd_handler, cycles_t cost_cmd_handler),
231 TP_ARGS(vm_id, ring_id, ip_gma, cmd_va, cmd_len, ring_buffer_cmd, cost_pre_cmd_handler, cost_cmd_handler),
233 TP_STRUCT__entry(
234 __field(u8, vm_id)
235 __field(u8, ring_id)
236 __field(int, i)
237 __array(char, tmp_buf, MAX_CMD_STR_LEN)
238 __array(char, cmd_str, MAX_CMD_STR_LEN)
241 TP_fast_assign(
242 __entry->vm_id = vm_id;
243 __entry->ring_id = ring_id;
244 __entry->cmd_str[0] = '\0';
245 snprintf(__entry->tmp_buf, MAX_CMD_STR_LEN, "VM(%d) Ring(%d): %s ip(%08x) pre handler cost (%llu), handler cost (%llu) ", vm_id, ring_id, ring_buffer_cmd ? "RB":"BB", ip_gma, cost_pre_cmd_handler, cost_cmd_handler);
246 strcat(__entry->cmd_str, __entry->tmp_buf);
247 entry->i = 0;
248 while (cmd_len > 0) {
249 if (cmd_len >= 8) {
250 snprintf(__entry->tmp_buf, MAX_CMD_STR_LEN, "%08x %08x %08x %08x %08x %08x %08x %08x ",
251 cmd_va[__entry->i], cmd_va[__entry->i+1], cmd_va[__entry->i+2], cmd_va[__entry->i+3],
252 cmd_va[__entry->i+4], cmd_va[__entry->i+5], cmd_va[__entry->i+6], cmd_va[__entry->i+7]);
253 __entry->i += 8;
254 cmd_len -= 8;
255 strcat(__entry->cmd_str, __entry->tmp_buf);
256 } else if (cmd_len >= 4) {
257 snprintf(__entry->tmp_buf, MAX_CMD_STR_LEN, "%08x %08x %08x %08x ",
258 cmd_va[__entry->i], cmd_va[__entry->i+1], cmd_va[__entry->i+2], cmd_va[__entry->i+3]);
259 __entry->i += 4;
260 cmd_len -= 4;
261 strcat(__entry->cmd_str, __entry->tmp_buf);
262 } else if (cmd_len >= 2) {
263 snprintf(__entry->tmp_buf, MAX_CMD_STR_LEN, "%08x %08x ", cmd_va[__entry->i], cmd_va[__entry->i+1]);
264 __entry->i += 2;
265 cmd_len -= 2;
266 strcat(__entry->cmd_str, __entry->tmp_buf);
267 } else if (cmd_len == 1) {
268 snprintf(__entry->tmp_buf, MAX_CMD_STR_LEN, "%08x ", cmd_va[__entry->i]);
269 __entry->i += 1;
270 cmd_len -= 1;
271 strcat(__entry->cmd_str, __entry->tmp_buf);
274 strcat(__entry->cmd_str, "\n");
277 TP_printk("%s", __entry->cmd_str)
279 #endif /* _GVT_TRACE_H_ */
281 /* This part must be out of protection */
282 #undef TRACE_INCLUDE_PATH
283 #define TRACE_INCLUDE_PATH .
284 #undef TRACE_INCLUDE_FILE
285 #define TRACE_INCLUDE_FILE trace
286 #include <trace/define_trace.h>