i915_trace.h 30.2 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
C
Chris Wilson 已提交
2 3 4 5 6 7 8
#if !defined(_I915_TRACE_H_) || defined(TRACE_HEADER_MULTI_READ)
#define _I915_TRACE_H_

#include <linux/stringify.h>
#include <linux/types.h>
#include <linux/tracepoint.h>

9 10
#include <drm/drm_drv.h>

11
#include "display/intel_crtc.h"
12
#include "display/intel_display_types.h"
13 14
#include "gt/intel_engine.h"

15
#include "i915_drv.h"
16
#include "i915_irq.h"
C
Chris Wilson 已提交
17 18 19 20 21

#undef TRACE_SYSTEM
#define TRACE_SYSTEM i915
#define TRACE_INCLUDE_FILE i915_trace

22 23
/* watermark/fifo updates */

24
TRACE_EVENT(intel_pipe_enable,
25 26
	    TP_PROTO(struct intel_crtc *crtc),
	    TP_ARGS(crtc),
27 28 29 30 31 32 33

	    TP_STRUCT__entry(
			     __array(u32, frame, 3)
			     __array(u32, scanline, 3)
			     __field(enum pipe, pipe)
			     ),
	    TP_fast_assign(
34 35 36 37 38
			   struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
			   struct intel_crtc *it__;
			   for_each_intel_crtc(&dev_priv->drm, it__) {
				   __entry->frame[it__->pipe] = intel_crtc_get_vblank_counter(it__);
				   __entry->scanline[it__->pipe] = intel_get_crtc_scanline(it__);
39
			   }
40
			   __entry->pipe = crtc->pipe;
41 42 43 44 45 46 47 48 49 50
			   ),

	    TP_printk("pipe %c enable, pipe A: frame=%u, scanline=%u, pipe B: frame=%u, scanline=%u, pipe C: frame=%u, scanline=%u",
		      pipe_name(__entry->pipe),
		      __entry->frame[PIPE_A], __entry->scanline[PIPE_A],
		      __entry->frame[PIPE_B], __entry->scanline[PIPE_B],
		      __entry->frame[PIPE_C], __entry->scanline[PIPE_C])
);

TRACE_EVENT(intel_pipe_disable,
51 52
	    TP_PROTO(struct intel_crtc *crtc),
	    TP_ARGS(crtc),
53 54 55 56 57 58 59 60

	    TP_STRUCT__entry(
			     __array(u32, frame, 3)
			     __array(u32, scanline, 3)
			     __field(enum pipe, pipe)
			     ),

	    TP_fast_assign(
61 62 63 64 65
			   struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
			   struct intel_crtc *it__;
			   for_each_intel_crtc(&dev_priv->drm, it__) {
				   __entry->frame[it__->pipe] = intel_crtc_get_vblank_counter(it__);
				   __entry->scanline[it__->pipe] = intel_get_crtc_scanline(it__);
66
			   }
67
			   __entry->pipe = crtc->pipe;
68 69 70 71 72 73 74 75 76
			   ),

	    TP_printk("pipe %c disable, pipe A: frame=%u, scanline=%u, pipe B: frame=%u, scanline=%u, pipe C: frame=%u, scanline=%u",
		      pipe_name(__entry->pipe),
		      __entry->frame[PIPE_A], __entry->scanline[PIPE_A],
		      __entry->frame[PIPE_B], __entry->scanline[PIPE_B],
		      __entry->frame[PIPE_C], __entry->scanline[PIPE_C])
);

77 78 79 80 81 82 83 84 85 86 87 88 89
TRACE_EVENT(intel_pipe_crc,
	    TP_PROTO(struct intel_crtc *crtc, const u32 *crcs),
	    TP_ARGS(crtc, crcs),

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
			     __array(u32, crcs, 5)
			     ),

	    TP_fast_assign(
			   __entry->pipe = crtc->pipe;
90
			   __entry->frame = intel_crtc_get_vblank_counter(crtc);
91 92 93 94 95 96 97 98 99 100
			   __entry->scanline = intel_get_crtc_scanline(crtc);
			   memcpy(__entry->crcs, crcs, sizeof(__entry->crcs));
			   ),

	    TP_printk("pipe %c, frame=%u, scanline=%u crc=%08x %08x %08x %08x %08x",
		      pipe_name(__entry->pipe), __entry->frame, __entry->scanline,
		      __entry->crcs[0], __entry->crcs[1], __entry->crcs[2],
		      __entry->crcs[3], __entry->crcs[4])
);

101 102 103 104 105 106 107 108 109 110 111
TRACE_EVENT(intel_cpu_fifo_underrun,
	    TP_PROTO(struct drm_i915_private *dev_priv, enum pipe pipe),
	    TP_ARGS(dev_priv, pipe),

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
			     ),

	    TP_fast_assign(
112
			    struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
113
			   __entry->pipe = pipe;
114 115
			   __entry->frame = intel_crtc_get_vblank_counter(crtc);
			   __entry->scanline = intel_get_crtc_scanline(crtc);
116 117 118 119 120 121 122 123
			   ),

	    TP_printk("pipe %c, frame=%u, scanline=%u",
		      pipe_name(__entry->pipe),
		      __entry->frame, __entry->scanline)
);

TRACE_EVENT(intel_pch_fifo_underrun,
124
	    TP_PROTO(struct drm_i915_private *dev_priv, enum pipe pch_transcoder),
125 126 127 128 129 130 131 132 133
	    TP_ARGS(dev_priv, pch_transcoder),

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
			     ),

	    TP_fast_assign(
134
			   enum pipe pipe = pch_transcoder;
135
			   struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
136
			   __entry->pipe = pipe;
137 138
			   __entry->frame = intel_crtc_get_vblank_counter(crtc);
			   __entry->scanline = intel_get_crtc_scanline(crtc);
139 140 141 142 143 144 145
			   ),

	    TP_printk("pch transcoder %c, frame=%u, scanline=%u",
		      pipe_name(__entry->pipe),
		      __entry->frame, __entry->scanline)
);

146 147 148 149 150 151 152 153 154 155 156 157
TRACE_EVENT(intel_memory_cxsr,
	    TP_PROTO(struct drm_i915_private *dev_priv, bool old, bool new),
	    TP_ARGS(dev_priv, old, new),

	    TP_STRUCT__entry(
			     __array(u32, frame, 3)
			     __array(u32, scanline, 3)
			     __field(bool, old)
			     __field(bool, new)
			     ),

	    TP_fast_assign(
158 159 160 161
			   struct intel_crtc *crtc;
			   for_each_intel_crtc(&dev_priv->drm, crtc) {
				   __entry->frame[crtc->pipe] = intel_crtc_get_vblank_counter(crtc);
				   __entry->scanline[crtc->pipe] = intel_get_crtc_scanline(crtc);
162 163 164 165 166 167 168 169 170 171 172 173
			   }
			   __entry->old = old;
			   __entry->new = new;
			   ),

	    TP_printk("%s->%s, pipe A: frame=%u, scanline=%u, pipe B: frame=%u, scanline=%u, pipe C: frame=%u, scanline=%u",
		      onoff(__entry->old), onoff(__entry->new),
		      __entry->frame[PIPE_A], __entry->scanline[PIPE_A],
		      __entry->frame[PIPE_B], __entry->scanline[PIPE_B],
		      __entry->frame[PIPE_C], __entry->scanline[PIPE_C])
);

174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
TRACE_EVENT(g4x_wm,
	    TP_PROTO(struct intel_crtc *crtc, const struct g4x_wm_values *wm),
	    TP_ARGS(crtc, wm),

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
			     __field(u16, primary)
			     __field(u16, sprite)
			     __field(u16, cursor)
			     __field(u16, sr_plane)
			     __field(u16, sr_cursor)
			     __field(u16, sr_fbc)
			     __field(u16, hpll_plane)
			     __field(u16, hpll_cursor)
			     __field(u16, hpll_fbc)
			     __field(bool, cxsr)
			     __field(bool, hpll)
			     __field(bool, fbc)
			     ),

	    TP_fast_assign(
			   __entry->pipe = crtc->pipe;
198
			   __entry->frame = intel_crtc_get_vblank_counter(crtc);
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
			   __entry->scanline = intel_get_crtc_scanline(crtc);
			   __entry->primary = wm->pipe[crtc->pipe].plane[PLANE_PRIMARY];
			   __entry->sprite = wm->pipe[crtc->pipe].plane[PLANE_SPRITE0];
			   __entry->cursor = wm->pipe[crtc->pipe].plane[PLANE_CURSOR];
			   __entry->sr_plane = wm->sr.plane;
			   __entry->sr_cursor = wm->sr.cursor;
			   __entry->sr_fbc = wm->sr.fbc;
			   __entry->hpll_plane = wm->hpll.plane;
			   __entry->hpll_cursor = wm->hpll.cursor;
			   __entry->hpll_fbc = wm->hpll.fbc;
			   __entry->cxsr = wm->cxsr;
			   __entry->hpll = wm->hpll_en;
			   __entry->fbc = wm->fbc_en;
			   ),

	    TP_printk("pipe %c, frame=%u, scanline=%u, wm %d/%d/%d, sr %s/%d/%d/%d, hpll %s/%d/%d/%d, fbc %s",
		      pipe_name(__entry->pipe), __entry->frame, __entry->scanline,
		      __entry->primary, __entry->sprite, __entry->cursor,
		      yesno(__entry->cxsr), __entry->sr_plane, __entry->sr_cursor, __entry->sr_fbc,
		      yesno(__entry->hpll), __entry->hpll_plane, __entry->hpll_cursor, __entry->hpll_fbc,
		      yesno(__entry->fbc))
);

222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
TRACE_EVENT(vlv_wm,
	    TP_PROTO(struct intel_crtc *crtc, const struct vlv_wm_values *wm),
	    TP_ARGS(crtc, wm),

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
			     __field(u32, level)
			     __field(u32, cxsr)
			     __field(u32, primary)
			     __field(u32, sprite0)
			     __field(u32, sprite1)
			     __field(u32, cursor)
			     __field(u32, sr_plane)
			     __field(u32, sr_cursor)
			     ),

	    TP_fast_assign(
			   __entry->pipe = crtc->pipe;
242
			   __entry->frame = intel_crtc_get_vblank_counter(crtc);
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
			   __entry->scanline = intel_get_crtc_scanline(crtc);
			   __entry->level = wm->level;
			   __entry->cxsr = wm->cxsr;
			   __entry->primary = wm->pipe[crtc->pipe].plane[PLANE_PRIMARY];
			   __entry->sprite0 = wm->pipe[crtc->pipe].plane[PLANE_SPRITE0];
			   __entry->sprite1 = wm->pipe[crtc->pipe].plane[PLANE_SPRITE1];
			   __entry->cursor = wm->pipe[crtc->pipe].plane[PLANE_CURSOR];
			   __entry->sr_plane = wm->sr.plane;
			   __entry->sr_cursor = wm->sr.cursor;
			   ),

	    TP_printk("pipe %c, frame=%u, scanline=%u, level=%d, cxsr=%d, wm %d/%d/%d/%d, sr %d/%d",
		      pipe_name(__entry->pipe), __entry->frame,
		      __entry->scanline, __entry->level, __entry->cxsr,
		      __entry->primary, __entry->sprite0, __entry->sprite1, __entry->cursor,
		      __entry->sr_plane, __entry->sr_cursor)
);

TRACE_EVENT(vlv_fifo_size,
	    TP_PROTO(struct intel_crtc *crtc, u32 sprite0_start, u32 sprite1_start, u32 fifo_size),
	    TP_ARGS(crtc, sprite0_start, sprite1_start, fifo_size),

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
			     __field(u32, sprite0_start)
			     __field(u32, sprite1_start)
			     __field(u32, fifo_size)
			     ),

	    TP_fast_assign(
			   __entry->pipe = crtc->pipe;
276
			   __entry->frame = intel_crtc_get_vblank_counter(crtc);
277 278 279 280 281 282 283 284 285 286 287 288
			   __entry->scanline = intel_get_crtc_scanline(crtc);
			   __entry->sprite0_start = sprite0_start;
			   __entry->sprite1_start = sprite1_start;
			   __entry->fifo_size = fifo_size;
			   ),

	    TP_printk("pipe %c, frame=%u, scanline=%u, %d/%d/%d",
		      pipe_name(__entry->pipe), __entry->frame,
		      __entry->scanline, __entry->sprite0_start,
		      __entry->sprite1_start, __entry->fifo_size)
);

289 290 291 292 293 294 295 296 297 298 299 300
/* plane updates */

TRACE_EVENT(intel_update_plane,
	    TP_PROTO(struct drm_plane *plane, struct intel_crtc *crtc),
	    TP_ARGS(plane, crtc),

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
			     __array(int, src, 4)
			     __array(int, dst, 4)
301
			     __string(name, plane->name)
302 303 304
			     ),

	    TP_fast_assign(
305
			   __assign_str(name, plane->name);
306
			   __entry->pipe = crtc->pipe;
307
			   __entry->frame = intel_crtc_get_vblank_counter(crtc);
308 309 310 311 312 313
			   __entry->scanline = intel_get_crtc_scanline(crtc);
			   memcpy(__entry->src, &plane->state->src, sizeof(__entry->src));
			   memcpy(__entry->dst, &plane->state->dst, sizeof(__entry->dst));
			   ),

	    TP_printk("pipe %c, plane %s, frame=%u, scanline=%u, " DRM_RECT_FP_FMT " -> " DRM_RECT_FMT,
314
		      pipe_name(__entry->pipe), __get_str(name),
315 316 317 318 319 320 321 322 323 324 325 326 327
		      __entry->frame, __entry->scanline,
		      DRM_RECT_FP_ARG((const struct drm_rect *)__entry->src),
		      DRM_RECT_ARG((const struct drm_rect *)__entry->dst))
);

TRACE_EVENT(intel_disable_plane,
	    TP_PROTO(struct drm_plane *plane, struct intel_crtc *crtc),
	    TP_ARGS(plane, crtc),

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
328
			     __string(name, plane->name)
329 330 331
			     ),

	    TP_fast_assign(
332
			   __assign_str(name, plane->name);
333
			   __entry->pipe = crtc->pipe;
334
			   __entry->frame = intel_crtc_get_vblank_counter(crtc);
335 336 337 338
			   __entry->scanline = intel_get_crtc_scanline(crtc);
			   ),

	    TP_printk("pipe %c, plane %s, frame=%u, scanline=%u",
339
		      pipe_name(__entry->pipe), __get_str(name),
340 341 342
		      __entry->frame, __entry->scanline)
);

343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
/* fbc */

TRACE_EVENT(intel_fbc_activate,
	    TP_PROTO(struct intel_crtc *crtc),
	    TP_ARGS(crtc),

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
			     ),

	    TP_fast_assign(
			   __entry->pipe = crtc->pipe;
			   __entry->frame = intel_crtc_get_vblank_counter(crtc);
			   __entry->scanline = intel_get_crtc_scanline(crtc);
			   ),

	    TP_printk("pipe %c, frame=%u, scanline=%u",
		      pipe_name(__entry->pipe), __entry->frame, __entry->scanline)
);

TRACE_EVENT(intel_fbc_deactivate,
	    TP_PROTO(struct intel_crtc *crtc),
	    TP_ARGS(crtc),

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
			     ),

	    TP_fast_assign(
			   __entry->pipe = crtc->pipe;
			   __entry->frame = intel_crtc_get_vblank_counter(crtc);
			   __entry->scanline = intel_get_crtc_scanline(crtc);
			   ),

	    TP_printk("pipe %c, frame=%u, scanline=%u",
		      pipe_name(__entry->pipe), __entry->frame, __entry->scanline)
);

TRACE_EVENT(intel_fbc_nuke,
	    TP_PROTO(struct intel_crtc *crtc),
	    TP_ARGS(crtc),

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
			     ),

	    TP_fast_assign(
			   __entry->pipe = crtc->pipe;
			   __entry->frame = intel_crtc_get_vblank_counter(crtc);
			   __entry->scanline = intel_get_crtc_scanline(crtc);
			   ),

	    TP_printk("pipe %c, frame=%u, scanline=%u",
		      pipe_name(__entry->pipe), __entry->frame, __entry->scanline)
);

405 406
/* pipe updates */

407
TRACE_EVENT(intel_pipe_update_start,
408 409
	    TP_PROTO(struct intel_crtc *crtc),
	    TP_ARGS(crtc),
410 411 412 413 414 415 416 417 418 419 420

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
			     __field(u32, min)
			     __field(u32, max)
			     ),

	    TP_fast_assign(
			   __entry->pipe = crtc->pipe;
421
			   __entry->frame = intel_crtc_get_vblank_counter(crtc);
422
			   __entry->scanline = intel_get_crtc_scanline(crtc);
423 424
			   __entry->min = crtc->debug.min_vbl;
			   __entry->max = crtc->debug.max_vbl;
425 426 427 428 429 430 431
			   ),

	    TP_printk("pipe %c, frame=%u, scanline=%u, min=%u, max=%u",
		      pipe_name(__entry->pipe), __entry->frame,
		       __entry->scanline, __entry->min, __entry->max)
);

432
TRACE_EVENT(intel_pipe_update_vblank_evaded,
433 434
	    TP_PROTO(struct intel_crtc *crtc),
	    TP_ARGS(crtc),
435 436 437 438 439 440 441 442 443 444 445

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
			     __field(u32, min)
			     __field(u32, max)
			     ),

	    TP_fast_assign(
			   __entry->pipe = crtc->pipe;
446 447 448 449
			   __entry->frame = crtc->debug.start_vbl_count;
			   __entry->scanline = crtc->debug.scanline_start;
			   __entry->min = crtc->debug.min_vbl;
			   __entry->max = crtc->debug.max_vbl;
450 451 452 453 454 455 456
			   ),

	    TP_printk("pipe %c, frame=%u, scanline=%u, min=%u, max=%u",
		      pipe_name(__entry->pipe), __entry->frame,
		       __entry->scanline, __entry->min, __entry->max)
);

457
TRACE_EVENT(intel_pipe_update_end,
458 459
	    TP_PROTO(struct intel_crtc *crtc, u32 frame, int scanline_end),
	    TP_ARGS(crtc, frame, scanline_end),
460 461 462 463 464 465 466 467 468 469

	    TP_STRUCT__entry(
			     __field(enum pipe, pipe)
			     __field(u32, frame)
			     __field(u32, scanline)
			     ),

	    TP_fast_assign(
			   __entry->pipe = crtc->pipe;
			   __entry->frame = frame;
470
			   __entry->scanline = scanline_end;
471 472 473 474 475 476 477
			   ),

	    TP_printk("pipe %c, frame=%u, scanline=%u",
		      pipe_name(__entry->pipe), __entry->frame,
		      __entry->scanline)
);

478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
/* frontbuffer tracking */

TRACE_EVENT(intel_frontbuffer_invalidate,
	    TP_PROTO(unsigned int frontbuffer_bits, unsigned int origin),
	    TP_ARGS(frontbuffer_bits, origin),

	    TP_STRUCT__entry(
			     __field(unsigned int, frontbuffer_bits)
			     __field(unsigned int, origin)
			     ),

	    TP_fast_assign(
			   __entry->frontbuffer_bits = frontbuffer_bits;
			   __entry->origin = origin;
			   ),

	    TP_printk("frontbuffer_bits=0x%08x, origin=%u",
		      __entry->frontbuffer_bits, __entry->origin)
);

TRACE_EVENT(intel_frontbuffer_flush,
	    TP_PROTO(unsigned int frontbuffer_bits, unsigned int origin),
	    TP_ARGS(frontbuffer_bits, origin),

	    TP_STRUCT__entry(
			     __field(unsigned int, frontbuffer_bits)
			     __field(unsigned int, origin)
			     ),

	    TP_fast_assign(
			   __entry->frontbuffer_bits = frontbuffer_bits;
			   __entry->origin = origin;
			   ),

	    TP_printk("frontbuffer_bits=0x%08x, origin=%u",
		      __entry->frontbuffer_bits, __entry->origin)
);

C
Chris Wilson 已提交
516 517 518
/* object tracking */

TRACE_EVENT(i915_gem_object_create,
519
	    TP_PROTO(struct drm_i915_gem_object *obj),
C
Chris Wilson 已提交
520 521 522
	    TP_ARGS(obj),

	    TP_STRUCT__entry(
523
			     __field(struct drm_i915_gem_object *, obj)
524
			     __field(u64, size)
C
Chris Wilson 已提交
525 526 527 528
			     ),

	    TP_fast_assign(
			   __entry->obj = obj;
529
			   __entry->size = obj->base.size;
C
Chris Wilson 已提交
530 531
			   ),

532
	    TP_printk("obj=%p, size=0x%llx", __entry->obj, __entry->size)
C
Chris Wilson 已提交
533 534
);

535 536 537 538 539 540 541 542 543 544 545
TRACE_EVENT(i915_gem_shrink,
	    TP_PROTO(struct drm_i915_private *i915, unsigned long target, unsigned flags),
	    TP_ARGS(i915, target, flags),

	    TP_STRUCT__entry(
			     __field(int, dev)
			     __field(unsigned long, target)
			     __field(unsigned, flags)
			     ),

	    TP_fast_assign(
546
			   __entry->dev = i915->drm.primary->index;
547 548 549 550 551 552 553 554
			   __entry->target = target;
			   __entry->flags = flags;
			   ),

	    TP_printk("dev=%d, target=%lu, flags=%x",
		      __entry->dev, __entry->target, __entry->flags)
);

555
TRACE_EVENT(i915_vma_bind,
556 557
	    TP_PROTO(struct i915_vma *vma, unsigned flags),
	    TP_ARGS(vma, flags),
C
Chris Wilson 已提交
558 559

	    TP_STRUCT__entry(
560
			     __field(struct drm_i915_gem_object *, obj)
561
			     __field(struct i915_address_space *, vm)
562
			     __field(u64, offset)
563
			     __field(u64, size)
564
			     __field(unsigned, flags)
C
Chris Wilson 已提交
565 566 567
			     ),

	    TP_fast_assign(
568 569 570 571
			   __entry->obj = vma->obj;
			   __entry->vm = vma->vm;
			   __entry->offset = vma->node.start;
			   __entry->size = vma->node.size;
572
			   __entry->flags = flags;
C
Chris Wilson 已提交
573 574
			   ),

575
	    TP_printk("obj=%p, offset=0x%016llx size=0x%llx%s vm=%p",
C
Chris Wilson 已提交
576
		      __entry->obj, __entry->offset, __entry->size,
577
		      __entry->flags & PIN_MAPPABLE ? ", mappable" : "",
578
		      __entry->vm)
C
Chris Wilson 已提交
579 580
);

581 582 583
TRACE_EVENT(i915_vma_unbind,
	    TP_PROTO(struct i915_vma *vma),
	    TP_ARGS(vma),
C
Chris Wilson 已提交
584 585 586

	    TP_STRUCT__entry(
			     __field(struct drm_i915_gem_object *, obj)
587
			     __field(struct i915_address_space *, vm)
588
			     __field(u64, offset)
589
			     __field(u64, size)
C
Chris Wilson 已提交
590
			     ),
C
Chris Wilson 已提交
591

C
Chris Wilson 已提交
592
	    TP_fast_assign(
593 594 595 596
			   __entry->obj = vma->obj;
			   __entry->vm = vma->vm;
			   __entry->offset = vma->node.start;
			   __entry->size = vma->node.size;
C
Chris Wilson 已提交
597
			   ),
C
Chris Wilson 已提交
598

599
	    TP_printk("obj=%p, offset=0x%016llx size=0x%llx vm=%p",
600
		      __entry->obj, __entry->offset, __entry->size, __entry->vm)
C
Chris Wilson 已提交
601 602 603
);

TRACE_EVENT(i915_gem_object_pwrite,
604
	    TP_PROTO(struct drm_i915_gem_object *obj, u64 offset, u64 len),
C
Chris Wilson 已提交
605
	    TP_ARGS(obj, offset, len),
C
Chris Wilson 已提交
606

C
Chris Wilson 已提交
607 608
	    TP_STRUCT__entry(
			     __field(struct drm_i915_gem_object *, obj)
609 610
			     __field(u64, offset)
			     __field(u64, len)
C
Chris Wilson 已提交
611
			     ),
C
Chris Wilson 已提交
612

C
Chris Wilson 已提交
613 614 615 616 617 618
	    TP_fast_assign(
			   __entry->obj = obj;
			   __entry->offset = offset;
			   __entry->len = len;
			   ),

619
	    TP_printk("obj=%p, offset=0x%llx, len=0x%llx",
C
Chris Wilson 已提交
620 621 622 623
		      __entry->obj, __entry->offset, __entry->len)
);

TRACE_EVENT(i915_gem_object_pread,
624
	    TP_PROTO(struct drm_i915_gem_object *obj, u64 offset, u64 len),
C
Chris Wilson 已提交
625
	    TP_ARGS(obj, offset, len),
C
Chris Wilson 已提交
626 627

	    TP_STRUCT__entry(
628
			     __field(struct drm_i915_gem_object *, obj)
629 630
			     __field(u64, offset)
			     __field(u64, len)
C
Chris Wilson 已提交
631 632 633 634
			     ),

	    TP_fast_assign(
			   __entry->obj = obj;
C
Chris Wilson 已提交
635 636
			   __entry->offset = offset;
			   __entry->len = len;
C
Chris Wilson 已提交
637 638
			   ),

639
	    TP_printk("obj=%p, offset=0x%llx, len=0x%llx",
C
Chris Wilson 已提交
640
		      __entry->obj, __entry->offset, __entry->len)
C
Chris Wilson 已提交
641 642
);

C
Chris Wilson 已提交
643
TRACE_EVENT(i915_gem_object_fault,
644
	    TP_PROTO(struct drm_i915_gem_object *obj, u64 index, bool gtt, bool write),
C
Chris Wilson 已提交
645 646 647 648
	    TP_ARGS(obj, index, gtt, write),

	    TP_STRUCT__entry(
			     __field(struct drm_i915_gem_object *, obj)
649
			     __field(u64, index)
C
Chris Wilson 已提交
650 651 652 653 654 655 656 657 658 659
			     __field(bool, gtt)
			     __field(bool, write)
			     ),

	    TP_fast_assign(
			   __entry->obj = obj;
			   __entry->index = index;
			   __entry->gtt = gtt;
			   __entry->write = write;
			   ),
660

661
	    TP_printk("obj=%p, %s index=%llu %s",
C
Chris Wilson 已提交
662 663 664 665 666 667 668
		      __entry->obj,
		      __entry->gtt ? "GTT" : "CPU",
		      __entry->index,
		      __entry->write ? ", writable" : "")
);

DECLARE_EVENT_CLASS(i915_gem_object,
669
	    TP_PROTO(struct drm_i915_gem_object *obj),
C
Chris Wilson 已提交
670
	    TP_ARGS(obj),
671

C
Chris Wilson 已提交
672 673 674 675 676 677 678 679 680
	    TP_STRUCT__entry(
			     __field(struct drm_i915_gem_object *, obj)
			     ),

	    TP_fast_assign(
			   __entry->obj = obj;
			   ),

	    TP_printk("obj=%p", __entry->obj)
681 682
);

C
Chris Wilson 已提交
683 684 685 686
DEFINE_EVENT(i915_gem_object, i915_gem_object_clflush,
	     TP_PROTO(struct drm_i915_gem_object *obj),
	     TP_ARGS(obj)
);
C
Chris Wilson 已提交
687

C
Chris Wilson 已提交
688
DEFINE_EVENT(i915_gem_object, i915_gem_object_destroy,
689
	    TP_PROTO(struct drm_i915_gem_object *obj),
690 691
	    TP_ARGS(obj)
);
C
Chris Wilson 已提交
692

C
Chris Wilson 已提交
693
TRACE_EVENT(i915_gem_evict,
694
	    TP_PROTO(struct i915_address_space *vm, u64 size, u64 align, unsigned int flags),
695
	    TP_ARGS(vm, size, align, flags),
C
Chris Wilson 已提交
696

C
Chris Wilson 已提交
697 698
	    TP_STRUCT__entry(
			     __field(u32, dev)
699
			     __field(struct i915_address_space *, vm)
700 701
			     __field(u64, size)
			     __field(u64, align)
702
			     __field(unsigned int, flags)
C
Chris Wilson 已提交
703
			    ),
C
Chris Wilson 已提交
704

C
Chris Wilson 已提交
705
	    TP_fast_assign(
706
			   __entry->dev = vm->i915->drm.primary->index;
707
			   __entry->vm = vm;
C
Chris Wilson 已提交
708 709
			   __entry->size = size;
			   __entry->align = align;
710
			   __entry->flags = flags;
C
Chris Wilson 已提交
711 712
			  ),

713
	    TP_printk("dev=%d, vm=%p, size=0x%llx, align=0x%llx %s",
714
		      __entry->dev, __entry->vm, __entry->size, __entry->align,
715
		      __entry->flags & PIN_MAPPABLE ? ", mappable" : "")
C
Chris Wilson 已提交
716 717
);

718 719 720
TRACE_EVENT(i915_gem_evict_node,
	    TP_PROTO(struct i915_address_space *vm, struct drm_mm_node *node, unsigned int flags),
	    TP_ARGS(vm, node, flags),
721 722 723 724 725 726 727 728 729 730 731

	    TP_STRUCT__entry(
			     __field(u32, dev)
			     __field(struct i915_address_space *, vm)
			     __field(u64, start)
			     __field(u64, size)
			     __field(unsigned long, color)
			     __field(unsigned int, flags)
			    ),

	    TP_fast_assign(
732 733 734 735 736
			   __entry->dev = vm->i915->drm.primary->index;
			   __entry->vm = vm;
			   __entry->start = node->start;
			   __entry->size = node->size;
			   __entry->color = node->color;
737 738 739
			   __entry->flags = flags;
			  ),

740
	    TP_printk("dev=%d, vm=%p, start=0x%llx size=0x%llx, color=0x%lx, flags=%x",
741 742 743 744 745
		      __entry->dev, __entry->vm,
		      __entry->start, __entry->size,
		      __entry->color, __entry->flags)
);

746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
TRACE_EVENT(i915_gem_evict_vm,
	    TP_PROTO(struct i915_address_space *vm),
	    TP_ARGS(vm),

	    TP_STRUCT__entry(
			     __field(u32, dev)
			     __field(struct i915_address_space *, vm)
			    ),

	    TP_fast_assign(
			   __entry->dev = vm->i915->drm.primary->index;
			   __entry->vm = vm;
			  ),

	    TP_printk("dev=%d, vm=%p", __entry->dev, __entry->vm)
);

763 764 765
TRACE_EVENT(i915_request_queue,
	    TP_PROTO(struct i915_request *rq, u32 flags),
	    TP_ARGS(rq, flags),
C
Chris Wilson 已提交
766 767

	    TP_STRUCT__entry(
768
			     __field(u32, dev)
769
			     __field(u64, ctx)
770 771
			     __field(u16, class)
			     __field(u16, instance)
C
Chris Wilson 已提交
772
			     __field(u32, seqno)
773
			     __field(u32, flags)
C
Chris Wilson 已提交
774 775 776
			     ),

	    TP_fast_assign(
777
			   __entry->dev = rq->engine->i915->drm.primary->index;
778
			   __entry->class = rq->engine->uabi_class;
779
			   __entry->instance = rq->engine->uabi_instance;
780 781
			   __entry->ctx = rq->fence.context;
			   __entry->seqno = rq->fence.seqno;
782
			   __entry->flags = flags;
C
Chris Wilson 已提交
783 784
			   ),

C
Chris Wilson 已提交
785
	    TP_printk("dev=%u, engine=%u:%u, ctx=%llu, seqno=%u, flags=0x%x",
786
		      __entry->dev, __entry->class, __entry->instance,
C
Chris Wilson 已提交
787
		      __entry->ctx, __entry->seqno, __entry->flags)
C
Chris Wilson 已提交
788 789
);

790 791 792
DECLARE_EVENT_CLASS(i915_request,
	    TP_PROTO(struct i915_request *rq),
	    TP_ARGS(rq),
C
Chris Wilson 已提交
793 794

	    TP_STRUCT__entry(
795
			     __field(u32, dev)
796
			     __field(u64, ctx)
797
			     __field(u32, guc_id)
798 799
			     __field(u16, class)
			     __field(u16, instance)
C
Chris Wilson 已提交
800
			     __field(u32, seqno)
801
			     __field(u32, tail)
C
Chris Wilson 已提交
802 803 804
			     ),

	    TP_fast_assign(
805
			   __entry->dev = rq->engine->i915->drm.primary->index;
806
			   __entry->class = rq->engine->uabi_class;
807
			   __entry->instance = rq->engine->uabi_instance;
808
			   __entry->guc_id = rq->context->guc_id;
809 810
			   __entry->ctx = rq->fence.context;
			   __entry->seqno = rq->fence.seqno;
811
			   __entry->tail = rq->tail;
C
Chris Wilson 已提交
812 813
			   ),

814
	    TP_printk("dev=%u, engine=%u:%u, guc_id=%u, ctx=%llu, seqno=%u, tail=%u",
815
		      __entry->dev, __entry->class, __entry->instance,
816 817
		      __entry->guc_id, __entry->ctx, __entry->seqno,
		      __entry->tail)
C
Chris Wilson 已提交
818 819
);

820
DEFINE_EVENT(i915_request, i915_request_add,
821 822
	     TP_PROTO(struct i915_request *rq),
	     TP_ARGS(rq)
C
Chris Wilson 已提交
823
);
C
Chris Wilson 已提交
824

825
#if defined(CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS)
826 827 828 829 830
DEFINE_EVENT(i915_request, i915_request_guc_submit,
	     TP_PROTO(struct i915_request *rq),
	     TP_ARGS(rq)
);

831 832 833
DEFINE_EVENT(i915_request, i915_request_submit,
	     TP_PROTO(struct i915_request *rq),
	     TP_ARGS(rq)
834 835
);

836 837 838
DEFINE_EVENT(i915_request, i915_request_execute,
	     TP_PROTO(struct i915_request *rq),
	     TP_ARGS(rq)
839
);
840

841 842 843 844 845 846
TRACE_EVENT(i915_request_in,
	    TP_PROTO(struct i915_request *rq, unsigned int port),
	    TP_ARGS(rq, port),

	    TP_STRUCT__entry(
			     __field(u32, dev)
847
			     __field(u64, ctx)
848 849
			     __field(u16, class)
			     __field(u16, instance)
850 851
			     __field(u32, seqno)
			     __field(u32, port)
852
			     __field(s32, prio)
853
			    ),
854

855
	    TP_fast_assign(
856
			   __entry->dev = rq->engine->i915->drm.primary->index;
857
			   __entry->class = rq->engine->uabi_class;
858
			   __entry->instance = rq->engine->uabi_instance;
859 860 861 862 863 864
			   __entry->ctx = rq->fence.context;
			   __entry->seqno = rq->fence.seqno;
			   __entry->prio = rq->sched.attr.priority;
			   __entry->port = port;
			   ),

865
	    TP_printk("dev=%u, engine=%u:%u, ctx=%llu, seqno=%u, prio=%d, port=%u",
866
		      __entry->dev, __entry->class, __entry->instance,
C
Chris Wilson 已提交
867
		      __entry->ctx, __entry->seqno,
868
		      __entry->prio, __entry->port)
869 870
);

871 872 873 874 875 876
TRACE_EVENT(i915_request_out,
	    TP_PROTO(struct i915_request *rq),
	    TP_ARGS(rq),

	    TP_STRUCT__entry(
			     __field(u32, dev)
877
			     __field(u64, ctx)
878 879
			     __field(u16, class)
			     __field(u16, instance)
880 881 882 883 884
			     __field(u32, seqno)
			     __field(u32, completed)
			    ),

	    TP_fast_assign(
885
			   __entry->dev = rq->engine->i915->drm.primary->index;
886
			   __entry->class = rq->engine->uabi_class;
887
			   __entry->instance = rq->engine->uabi_instance;
888 889 890 891 892
			   __entry->ctx = rq->fence.context;
			   __entry->seqno = rq->fence.seqno;
			   __entry->completed = i915_request_completed(rq);
			   ),

C
Chris Wilson 已提交
893
		    TP_printk("dev=%u, engine=%u:%u, ctx=%llu, seqno=%u, completed?=%u",
894
			      __entry->dev, __entry->class, __entry->instance,
C
Chris Wilson 已提交
895
			      __entry->ctx, __entry->seqno, __entry->completed)
896
);
897

898 899
#else
#if !defined(TRACE_HEADER_MULTI_READ)
900 901 902 903 904
static inline void
trace_i915_request_guc_submit(struct i915_request *rq)
{
}

905
static inline void
906
trace_i915_request_submit(struct i915_request *rq)
907 908 909 910
{
}

static inline void
911
trace_i915_request_execute(struct i915_request *rq)
912 913
{
}
914 915

static inline void
916
trace_i915_request_in(struct i915_request *rq, unsigned int port)
917 918 919 920
{
}

static inline void
921
trace_i915_request_out(struct i915_request *rq)
922 923
{
}
924 925 926
#endif
#endif

927 928 929
DEFINE_EVENT(i915_request, i915_request_retire,
	    TP_PROTO(struct i915_request *rq),
	    TP_ARGS(rq)
C
Chris Wilson 已提交
930 931
);

932 933 934
TRACE_EVENT(i915_request_wait_begin,
	    TP_PROTO(struct i915_request *rq, unsigned int flags),
	    TP_ARGS(rq, flags),
935 936 937

	    TP_STRUCT__entry(
			     __field(u32, dev)
938
			     __field(u64, ctx)
939 940
			     __field(u16, class)
			     __field(u16, instance)
941
			     __field(u32, seqno)
942
			     __field(unsigned int, flags)
943 944 945 946 947 948 949 950 951
			     ),

	    /* NB: the blocking information is racy since mutex_is_locked
	     * doesn't check that the current thread holds the lock. The only
	     * other option would be to pass the boolean information of whether
	     * or not the class was blocking down through the stack which is
	     * less desirable.
	     */
	    TP_fast_assign(
952
			   __entry->dev = rq->engine->i915->drm.primary->index;
953
			   __entry->class = rq->engine->uabi_class;
954
			   __entry->instance = rq->engine->uabi_instance;
955 956
			   __entry->ctx = rq->fence.context;
			   __entry->seqno = rq->fence.seqno;
957
			   __entry->flags = flags;
958 959
			   ),

C
Chris Wilson 已提交
960
	    TP_printk("dev=%u, engine=%u:%u, ctx=%llu, seqno=%u, flags=0x%x",
961
		      __entry->dev, __entry->class, __entry->instance,
C
Chris Wilson 已提交
962
		      __entry->ctx, __entry->seqno,
963
		      __entry->flags)
964
);
C
Chris Wilson 已提交
965

966 967 968
DEFINE_EVENT(i915_request, i915_request_wait_end,
	    TP_PROTO(struct i915_request *rq),
	    TP_ARGS(rq)
C
Chris Wilson 已提交
969 970
);

971
TRACE_EVENT_CONDITION(i915_reg_rw,
972
	TP_PROTO(bool write, i915_reg_t reg, u64 val, int len, bool trace),
973

974 975 976
	TP_ARGS(write, reg, val, len, trace),

	TP_CONDITION(trace),
977 978 979 980 981 982 983 984 985 986

	TP_STRUCT__entry(
		__field(u64, val)
		__field(u32, reg)
		__field(u16, write)
		__field(u16, len)
		),

	TP_fast_assign(
		__entry->val = (u64)val;
987
		__entry->reg = i915_mmio_reg_offset(reg);
988 989 990 991 992 993 994 995 996
		__entry->write = write;
		__entry->len = len;
		),

	TP_printk("%s reg=0x%x, len=%d, val=(0x%x, 0x%x)",
		__entry->write ? "write" : "read",
		__entry->reg, __entry->len,
		(u32)(__entry->val & 0xffffffff),
		(u32)(__entry->val >> 32))
997 998
);

999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
TRACE_EVENT(intel_gpu_freq_change,
	    TP_PROTO(u32 freq),
	    TP_ARGS(freq),

	    TP_STRUCT__entry(
			     __field(u32, freq)
			     ),

	    TP_fast_assign(
			   __entry->freq = freq;
			   ),

	    TP_printk("new_freq=%u", __entry->freq)
);

1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
/**
 * DOC: i915_ppgtt_create and i915_ppgtt_release tracepoints
 *
 * With full ppgtt enabled each process using drm will allocate at least one
 * translation table. With these traces it is possible to keep track of the
 * allocation and of the lifetime of the tables; this can be used during
 * testing/debug to verify that we are not leaking ppgtts.
 * These traces identify the ppgtt through the vm pointer, which is also printed
 * by the i915_vma_bind and i915_vma_unbind tracepoints.
 */
DECLARE_EVENT_CLASS(i915_ppgtt,
	TP_PROTO(struct i915_address_space *vm),
	TP_ARGS(vm),

	TP_STRUCT__entry(
			__field(struct i915_address_space *, vm)
			__field(u32, dev)
	),

	TP_fast_assign(
			__entry->vm = vm;
1035
			__entry->dev = vm->i915->drm.primary->index;
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
	),

	TP_printk("dev=%u, vm=%p", __entry->dev, __entry->vm)
)

DEFINE_EVENT(i915_ppgtt, i915_ppgtt_create,
	TP_PROTO(struct i915_address_space *vm),
	TP_ARGS(vm)
);

DEFINE_EVENT(i915_ppgtt, i915_ppgtt_release,
	TP_PROTO(struct i915_address_space *vm),
	TP_ARGS(vm)
);

/**
 * DOC: i915_context_create and i915_context_free tracepoints
 *
 * These tracepoints are used to track creation and deletion of contexts.
 * If full ppgtt is enabled, they also print the address of the vm assigned to
 * the context.
 */
DECLARE_EVENT_CLASS(i915_context,
1059
	TP_PROTO(struct i915_gem_context *ctx),
1060 1061 1062 1063
	TP_ARGS(ctx),

	TP_STRUCT__entry(
			__field(u32, dev)
1064
			__field(struct i915_gem_context *, ctx)
1065 1066 1067 1068
			__field(struct i915_address_space *, vm)
	),

	TP_fast_assign(
1069
			__entry->dev = ctx->i915->drm.primary->index;
1070
			__entry->ctx = ctx;
1071
			__entry->vm = rcu_access_pointer(ctx->vm);
1072 1073
	),

C
Chris Wilson 已提交
1074 1075
	TP_printk("dev=%u, ctx=%p, ctx_vm=%p",
		  __entry->dev, __entry->ctx, __entry->vm)
1076 1077 1078
)

DEFINE_EVENT(i915_context, i915_context_create,
1079
	TP_PROTO(struct i915_gem_context *ctx),
1080 1081 1082 1083
	TP_ARGS(ctx)
);

DEFINE_EVENT(i915_context, i915_context_free,
1084
	TP_PROTO(struct i915_gem_context *ctx),
1085 1086 1087
	TP_ARGS(ctx)
);

C
Chris Wilson 已提交
1088 1089 1090 1091
#endif /* _I915_TRACE_H_ */

/* This part must be outside protection */
#undef TRACE_INCLUDE_PATH
1092
#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/i915
C
Chris Wilson 已提交
1093
#include <trace/define_trace.h>