i915_trace.h 28.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 "i915_drv.h"
12
#include "intel_drv.h"
C
Chris Wilson 已提交
13
#include "intel_ringbuffer.h"
C
Chris Wilson 已提交
14 15 16 17 18

#undef TRACE_SYSTEM
#define TRACE_SYSTEM i915
#define TRACE_INCLUDE_FILE i915_trace

19 20
/* watermark/fifo updates */

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
TRACE_EVENT(intel_pipe_enable,
	    TP_PROTO(struct drm_i915_private *dev_priv, enum pipe pipe),
	    TP_ARGS(dev_priv, pipe),

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

	    TP_fast_assign(
			   enum pipe _pipe;
			   for_each_pipe(dev_priv, _pipe) {
				   __entry->frame[_pipe] =
					   dev_priv->drm.driver->get_vblank_counter(&dev_priv->drm, _pipe);
				   __entry->scanline[_pipe] =
					   intel_get_crtc_scanline(intel_get_crtc_for_pipe(dev_priv, _pipe));
			   }
			   __entry->pipe = pipe;
			   ),

	    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,
	    TP_PROTO(struct drm_i915_private *dev_priv, enum pipe pipe),
	    TP_ARGS(dev_priv, pipe),

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

	    TP_fast_assign(
			   enum pipe _pipe;
			   for_each_pipe(dev_priv, _pipe) {
				   __entry->frame[_pipe] =
					   dev_priv->drm.driver->get_vblank_counter(&dev_priv->drm, _pipe);
				   __entry->scanline[_pipe] =
					   intel_get_crtc_scanline(intel_get_crtc_for_pipe(dev_priv, _pipe));
			   }
			   __entry->pipe = pipe;
			   ),

	    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 90 91 92 93 94 95 96 97 98 99 100 101
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;
			   __entry->frame = crtc->base.dev->driver->get_vblank_counter(crtc->base.dev,
										       crtc->pipe);
			   __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])
);

102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
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(
			   __entry->pipe = pipe;
			   __entry->frame = dev_priv->drm.driver->get_vblank_counter(&dev_priv->drm, pipe);
			   __entry->scanline = intel_get_crtc_scanline(intel_get_crtc_for_pipe(dev_priv, pipe));
			   ),

	    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 136 137 138 139 140 141 142 143 144
			   __entry->pipe = pipe;
			   __entry->frame = dev_priv->drm.driver->get_vblank_counter(&dev_priv->drm, pipe);
			   __entry->scanline = intel_get_crtc_scanline(intel_get_crtc_for_pipe(dev_priv, pipe));
			   ),

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

145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
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(
			   enum pipe pipe;
			   for_each_pipe(dev_priv, pipe) {
				   __entry->frame[pipe] =
					   dev_priv->drm.driver->get_vblank_counter(&dev_priv->drm, pipe);
				   __entry->scanline[pipe] =
					   intel_get_crtc_scanline(intel_get_crtc_for_pipe(dev_priv, pipe));
			   }
			   __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])
);

175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
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;
			   __entry->frame = crtc->base.dev->driver->get_vblank_counter(crtc->base.dev,
										       crtc->pipe);
			   __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))
);

224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 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 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
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;
			   __entry->frame = crtc->base.dev->driver->get_vblank_counter(crtc->base.dev,
										       crtc->pipe);
			   __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;
			   __entry->frame = crtc->base.dev->driver->get_vblank_counter(crtc->base.dev,
										       crtc->pipe);
			   __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)
);

293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
/* 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(const char *, name)
			     __field(u32, frame)
			     __field(u32, scanline)
			     __array(int, src, 4)
			     __array(int, dst, 4)
			     ),

	    TP_fast_assign(
			   __entry->pipe = crtc->pipe;
			   __entry->name = plane->name;
			   __entry->frame = crtc->base.dev->driver->get_vblank_counter(crtc->base.dev,
										       crtc->pipe);
			   __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,
		      pipe_name(__entry->pipe), __entry->name,
		      __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(const char *, name)
			     __field(u32, frame)
			     __field(u32, scanline)
			     ),

	    TP_fast_assign(
			   __entry->pipe = crtc->pipe;
			   __entry->name = plane->name;
			   __entry->frame = crtc->base.dev->driver->get_vblank_counter(crtc->base.dev,
										       crtc->pipe);
			   __entry->scanline = intel_get_crtc_scanline(crtc);
			   ),

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

349 350 351
/* pipe updates */

TRACE_EVENT(i915_pipe_update_start,
352 353
	    TP_PROTO(struct intel_crtc *crtc),
	    TP_ARGS(crtc),
354 355 356 357 358 359 360 361 362 363 364 365 366 367

	    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;
			   __entry->frame = crtc->base.dev->driver->get_vblank_counter(crtc->base.dev,
										       crtc->pipe);
			   __entry->scanline = intel_get_crtc_scanline(crtc);
368 369
			   __entry->min = crtc->debug.min_vbl;
			   __entry->max = crtc->debug.max_vbl;
370 371 372 373 374 375 376 377
			   ),

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

TRACE_EVENT(i915_pipe_update_vblank_evaded,
378 379
	    TP_PROTO(struct intel_crtc *crtc),
	    TP_ARGS(crtc),
380 381 382 383 384 385 386 387 388 389 390

	    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;
391 392 393 394
			   __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;
395 396 397 398 399 400 401 402
			   ),

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

TRACE_EVENT(i915_pipe_update_end,
403 404
	    TP_PROTO(struct intel_crtc *crtc, u32 frame, int scanline_end),
	    TP_ARGS(crtc, frame, scanline_end),
405 406 407 408 409 410 411 412 413 414

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

	    TP_fast_assign(
			   __entry->pipe = crtc->pipe;
			   __entry->frame = frame;
415
			   __entry->scanline = scanline_end;
416 417 418 419 420 421 422
			   ),

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

C
Chris Wilson 已提交
423 424 425
/* object tracking */

TRACE_EVENT(i915_gem_object_create,
426
	    TP_PROTO(struct drm_i915_gem_object *obj),
C
Chris Wilson 已提交
427 428 429
	    TP_ARGS(obj),

	    TP_STRUCT__entry(
430
			     __field(struct drm_i915_gem_object *, obj)
431
			     __field(u64, size)
C
Chris Wilson 已提交
432 433 434 435
			     ),

	    TP_fast_assign(
			   __entry->obj = obj;
436
			   __entry->size = obj->base.size;
C
Chris Wilson 已提交
437 438
			   ),

439
	    TP_printk("obj=%p, size=0x%llx", __entry->obj, __entry->size)
C
Chris Wilson 已提交
440 441
);

442 443 444 445 446 447 448 449 450 451 452
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(
453
			   __entry->dev = i915->drm.primary->index;
454 455 456 457 458 459 460 461
			   __entry->target = target;
			   __entry->flags = flags;
			   ),

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

462
TRACE_EVENT(i915_vma_bind,
463 464
	    TP_PROTO(struct i915_vma *vma, unsigned flags),
	    TP_ARGS(vma, flags),
C
Chris Wilson 已提交
465 466

	    TP_STRUCT__entry(
467
			     __field(struct drm_i915_gem_object *, obj)
468
			     __field(struct i915_address_space *, vm)
469
			     __field(u64, offset)
470
			     __field(u64, size)
471
			     __field(unsigned, flags)
C
Chris Wilson 已提交
472 473 474
			     ),

	    TP_fast_assign(
475 476 477 478
			   __entry->obj = vma->obj;
			   __entry->vm = vma->vm;
			   __entry->offset = vma->node.start;
			   __entry->size = vma->node.size;
479
			   __entry->flags = flags;
C
Chris Wilson 已提交
480 481
			   ),

482
	    TP_printk("obj=%p, offset=0x%016llx size=0x%llx%s vm=%p",
C
Chris Wilson 已提交
483
		      __entry->obj, __entry->offset, __entry->size,
484
		      __entry->flags & PIN_MAPPABLE ? ", mappable" : "",
485
		      __entry->vm)
C
Chris Wilson 已提交
486 487
);

488 489 490
TRACE_EVENT(i915_vma_unbind,
	    TP_PROTO(struct i915_vma *vma),
	    TP_ARGS(vma),
C
Chris Wilson 已提交
491 492 493

	    TP_STRUCT__entry(
			     __field(struct drm_i915_gem_object *, obj)
494
			     __field(struct i915_address_space *, vm)
495
			     __field(u64, offset)
496
			     __field(u64, size)
C
Chris Wilson 已提交
497
			     ),
C
Chris Wilson 已提交
498

C
Chris Wilson 已提交
499
	    TP_fast_assign(
500 501 502 503
			   __entry->obj = vma->obj;
			   __entry->vm = vma->vm;
			   __entry->offset = vma->node.start;
			   __entry->size = vma->node.size;
C
Chris Wilson 已提交
504
			   ),
C
Chris Wilson 已提交
505

506
	    TP_printk("obj=%p, offset=0x%016llx size=0x%llx vm=%p",
507
		      __entry->obj, __entry->offset, __entry->size, __entry->vm)
C
Chris Wilson 已提交
508 509 510
);

TRACE_EVENT(i915_gem_object_pwrite,
511
	    TP_PROTO(struct drm_i915_gem_object *obj, u64 offset, u64 len),
C
Chris Wilson 已提交
512
	    TP_ARGS(obj, offset, len),
C
Chris Wilson 已提交
513

C
Chris Wilson 已提交
514 515
	    TP_STRUCT__entry(
			     __field(struct drm_i915_gem_object *, obj)
516 517
			     __field(u64, offset)
			     __field(u64, len)
C
Chris Wilson 已提交
518
			     ),
C
Chris Wilson 已提交
519

C
Chris Wilson 已提交
520 521 522 523 524 525
	    TP_fast_assign(
			   __entry->obj = obj;
			   __entry->offset = offset;
			   __entry->len = len;
			   ),

526
	    TP_printk("obj=%p, offset=0x%llx, len=0x%llx",
C
Chris Wilson 已提交
527 528 529 530
		      __entry->obj, __entry->offset, __entry->len)
);

TRACE_EVENT(i915_gem_object_pread,
531
	    TP_PROTO(struct drm_i915_gem_object *obj, u64 offset, u64 len),
C
Chris Wilson 已提交
532
	    TP_ARGS(obj, offset, len),
C
Chris Wilson 已提交
533 534

	    TP_STRUCT__entry(
535
			     __field(struct drm_i915_gem_object *, obj)
536 537
			     __field(u64, offset)
			     __field(u64, len)
C
Chris Wilson 已提交
538 539 540 541
			     ),

	    TP_fast_assign(
			   __entry->obj = obj;
C
Chris Wilson 已提交
542 543
			   __entry->offset = offset;
			   __entry->len = len;
C
Chris Wilson 已提交
544 545
			   ),

546
	    TP_printk("obj=%p, offset=0x%llx, len=0x%llx",
C
Chris Wilson 已提交
547
		      __entry->obj, __entry->offset, __entry->len)
C
Chris Wilson 已提交
548 549
);

C
Chris Wilson 已提交
550
TRACE_EVENT(i915_gem_object_fault,
551
	    TP_PROTO(struct drm_i915_gem_object *obj, u64 index, bool gtt, bool write),
C
Chris Wilson 已提交
552 553 554 555
	    TP_ARGS(obj, index, gtt, write),

	    TP_STRUCT__entry(
			     __field(struct drm_i915_gem_object *, obj)
556
			     __field(u64, index)
C
Chris Wilson 已提交
557 558 559 560 561 562 563 564 565 566
			     __field(bool, gtt)
			     __field(bool, write)
			     ),

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

568
	    TP_printk("obj=%p, %s index=%llu %s",
C
Chris Wilson 已提交
569 570 571 572 573 574 575
		      __entry->obj,
		      __entry->gtt ? "GTT" : "CPU",
		      __entry->index,
		      __entry->write ? ", writable" : "")
);

DECLARE_EVENT_CLASS(i915_gem_object,
576
	    TP_PROTO(struct drm_i915_gem_object *obj),
C
Chris Wilson 已提交
577
	    TP_ARGS(obj),
578

C
Chris Wilson 已提交
579 580 581 582 583 584 585 586 587
	    TP_STRUCT__entry(
			     __field(struct drm_i915_gem_object *, obj)
			     ),

	    TP_fast_assign(
			   __entry->obj = obj;
			   ),

	    TP_printk("obj=%p", __entry->obj)
588 589
);

C
Chris Wilson 已提交
590 591 592 593
DEFINE_EVENT(i915_gem_object, i915_gem_object_clflush,
	     TP_PROTO(struct drm_i915_gem_object *obj),
	     TP_ARGS(obj)
);
C
Chris Wilson 已提交
594

C
Chris Wilson 已提交
595
DEFINE_EVENT(i915_gem_object, i915_gem_object_destroy,
596
	    TP_PROTO(struct drm_i915_gem_object *obj),
597 598
	    TP_ARGS(obj)
);
C
Chris Wilson 已提交
599

C
Chris Wilson 已提交
600
TRACE_EVENT(i915_gem_evict,
601
	    TP_PROTO(struct i915_address_space *vm, u64 size, u64 align, unsigned int flags),
602
	    TP_ARGS(vm, size, align, flags),
C
Chris Wilson 已提交
603

C
Chris Wilson 已提交
604 605
	    TP_STRUCT__entry(
			     __field(u32, dev)
606
			     __field(struct i915_address_space *, vm)
607 608
			     __field(u64, size)
			     __field(u64, align)
609
			     __field(unsigned int, flags)
C
Chris Wilson 已提交
610
			    ),
C
Chris Wilson 已提交
611

C
Chris Wilson 已提交
612
	    TP_fast_assign(
613
			   __entry->dev = vm->i915->drm.primary->index;
614
			   __entry->vm = vm;
C
Chris Wilson 已提交
615 616
			   __entry->size = size;
			   __entry->align = align;
617
			   __entry->flags = flags;
C
Chris Wilson 已提交
618 619
			  ),

620
	    TP_printk("dev=%d, vm=%p, size=0x%llx, align=0x%llx %s",
621
		      __entry->dev, __entry->vm, __entry->size, __entry->align,
622
		      __entry->flags & PIN_MAPPABLE ? ", mappable" : "")
C
Chris Wilson 已提交
623 624
);

625 626 627
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),
628 629 630 631 632 633 634 635 636 637 638

	    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(
639 640 641 642 643
			   __entry->dev = vm->i915->drm.primary->index;
			   __entry->vm = vm;
			   __entry->start = node->start;
			   __entry->size = node->size;
			   __entry->color = node->color;
644 645 646
			   __entry->flags = flags;
			  ),

647
	    TP_printk("dev=%d, vm=%p, start=0x%llx size=0x%llx, color=0x%lx, flags=%x",
648 649 650 651 652
		      __entry->dev, __entry->vm,
		      __entry->start, __entry->size,
		      __entry->color, __entry->flags)
);

653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669
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)
);

670 671 672
TRACE_EVENT(i915_request_queue,
	    TP_PROTO(struct i915_request *rq, u32 flags),
	    TP_ARGS(rq, flags),
C
Chris Wilson 已提交
673 674

	    TP_STRUCT__entry(
675
			     __field(u32, dev)
676
			     __field(u32, hw_id)
677
			     __field(u64, ctx)
678 679
			     __field(u16, class)
			     __field(u16, instance)
C
Chris Wilson 已提交
680
			     __field(u32, seqno)
681
			     __field(u32, flags)
C
Chris Wilson 已提交
682 683 684
			     ),

	    TP_fast_assign(
685
			   __entry->dev = rq->i915->drm.primary->index;
C
Chris Wilson 已提交
686
			   __entry->hw_id = rq->gem_context->hw_id;
687 688
			   __entry->class = rq->engine->uabi_class;
			   __entry->instance = rq->engine->instance;
689 690
			   __entry->ctx = rq->fence.context;
			   __entry->seqno = rq->fence.seqno;
691
			   __entry->flags = flags;
C
Chris Wilson 已提交
692 693
			   ),

694
	    TP_printk("dev=%u, engine=%u:%u, hw_id=%u, ctx=%llu, seqno=%u, flags=0x%x",
695 696
		      __entry->dev, __entry->class, __entry->instance,
		      __entry->hw_id, __entry->ctx, __entry->seqno,
697
		      __entry->flags)
C
Chris Wilson 已提交
698 699
);

700 701 702
DECLARE_EVENT_CLASS(i915_request,
	    TP_PROTO(struct i915_request *rq),
	    TP_ARGS(rq),
C
Chris Wilson 已提交
703 704

	    TP_STRUCT__entry(
705
			     __field(u32, dev)
706
			     __field(u32, hw_id)
707
			     __field(u64, ctx)
708 709
			     __field(u16, class)
			     __field(u16, instance)
C
Chris Wilson 已提交
710 711 712 713
			     __field(u32, seqno)
			     ),

	    TP_fast_assign(
714
			   __entry->dev = rq->i915->drm.primary->index;
C
Chris Wilson 已提交
715
			   __entry->hw_id = rq->gem_context->hw_id;
716 717
			   __entry->class = rq->engine->uabi_class;
			   __entry->instance = rq->engine->instance;
718 719
			   __entry->ctx = rq->fence.context;
			   __entry->seqno = rq->fence.seqno;
C
Chris Wilson 已提交
720 721
			   ),

722
	    TP_printk("dev=%u, engine=%u:%u, hw_id=%u, ctx=%llu, seqno=%u",
723
		      __entry->dev, __entry->class, __entry->instance,
724
		      __entry->hw_id, __entry->ctx, __entry->seqno)
C
Chris Wilson 已提交
725 726
);

727 728 729
DEFINE_EVENT(i915_request, i915_request_add,
	    TP_PROTO(struct i915_request *rq),
	    TP_ARGS(rq)
C
Chris Wilson 已提交
730
);
C
Chris Wilson 已提交
731

732
#if defined(CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS)
733 734 735
DEFINE_EVENT(i915_request, i915_request_submit,
	     TP_PROTO(struct i915_request *rq),
	     TP_ARGS(rq)
736 737
);

738 739 740
DEFINE_EVENT(i915_request, i915_request_execute,
	     TP_PROTO(struct i915_request *rq),
	     TP_ARGS(rq)
741
);
742

743 744 745 746 747 748 749
TRACE_EVENT(i915_request_in,
	    TP_PROTO(struct i915_request *rq, unsigned int port),
	    TP_ARGS(rq, port),

	    TP_STRUCT__entry(
			     __field(u32, dev)
			     __field(u32, hw_id)
750
			     __field(u64, ctx)
751 752
			     __field(u16, class)
			     __field(u16, instance)
753 754 755 756
			     __field(u32, seqno)
			     __field(u32, port)
			     __field(u32, prio)
			    ),
757

758 759
	    TP_fast_assign(
			   __entry->dev = rq->i915->drm.primary->index;
C
Chris Wilson 已提交
760
			   __entry->hw_id = rq->gem_context->hw_id;
761 762
			   __entry->class = rq->engine->uabi_class;
			   __entry->instance = rq->engine->instance;
763 764 765 766 767 768
			   __entry->ctx = rq->fence.context;
			   __entry->seqno = rq->fence.seqno;
			   __entry->prio = rq->sched.attr.priority;
			   __entry->port = port;
			   ),

769
	    TP_printk("dev=%u, engine=%u:%u, hw_id=%u, ctx=%llu, seqno=%u, prio=%u, port=%u",
770 771
		      __entry->dev, __entry->class, __entry->instance,
		      __entry->hw_id, __entry->ctx, __entry->seqno,
772
		      __entry->prio, __entry->port)
773 774
);

775 776 777 778 779 780 781
TRACE_EVENT(i915_request_out,
	    TP_PROTO(struct i915_request *rq),
	    TP_ARGS(rq),

	    TP_STRUCT__entry(
			     __field(u32, dev)
			     __field(u32, hw_id)
782
			     __field(u64, ctx)
783 784
			     __field(u16, class)
			     __field(u16, instance)
785 786 787 788 789 790
			     __field(u32, seqno)
			     __field(u32, completed)
			    ),

	    TP_fast_assign(
			   __entry->dev = rq->i915->drm.primary->index;
C
Chris Wilson 已提交
791
			   __entry->hw_id = rq->gem_context->hw_id;
792 793
			   __entry->class = rq->engine->uabi_class;
			   __entry->instance = rq->engine->instance;
794 795 796 797 798
			   __entry->ctx = rq->fence.context;
			   __entry->seqno = rq->fence.seqno;
			   __entry->completed = i915_request_completed(rq);
			   ),

799
		    TP_printk("dev=%u, engine=%u:%u, hw_id=%u, ctx=%llu, seqno=%u, completed?=%u",
800 801
			      __entry->dev, __entry->class, __entry->instance,
			      __entry->hw_id, __entry->ctx, __entry->seqno,
802
			      __entry->completed)
803
);
804

805 806 807
#else
#if !defined(TRACE_HEADER_MULTI_READ)
static inline void
808
trace_i915_request_submit(struct i915_request *rq)
809 810 811 812
{
}

static inline void
813
trace_i915_request_execute(struct i915_request *rq)
814 815
{
}
816 817

static inline void
818
trace_i915_request_in(struct i915_request *rq, unsigned int port)
819 820 821 822
{
}

static inline void
823
trace_i915_request_out(struct i915_request *rq)
824 825
{
}
826 827 828
#endif
#endif

829 830 831
DEFINE_EVENT(i915_request, i915_request_retire,
	    TP_PROTO(struct i915_request *rq),
	    TP_ARGS(rq)
C
Chris Wilson 已提交
832 833
);

834 835 836
TRACE_EVENT(i915_request_wait_begin,
	    TP_PROTO(struct i915_request *rq, unsigned int flags),
	    TP_ARGS(rq, flags),
837 838 839

	    TP_STRUCT__entry(
			     __field(u32, dev)
840
			     __field(u32, hw_id)
841
			     __field(u64, ctx)
842 843
			     __field(u16, class)
			     __field(u16, instance)
844
			     __field(u32, seqno)
845
			     __field(unsigned int, flags)
846 847 848 849 850 851 852 853 854
			     ),

	    /* 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(
855
			   __entry->dev = rq->i915->drm.primary->index;
C
Chris Wilson 已提交
856
			   __entry->hw_id = rq->gem_context->hw_id;
857 858
			   __entry->class = rq->engine->uabi_class;
			   __entry->instance = rq->engine->instance;
859 860
			   __entry->ctx = rq->fence.context;
			   __entry->seqno = rq->fence.seqno;
861
			   __entry->flags = flags;
862 863
			   ),

864
	    TP_printk("dev=%u, engine=%u:%u, hw_id=%u, ctx=%llu, seqno=%u, blocking=%u, flags=0x%x",
865 866
		      __entry->dev, __entry->class, __entry->instance,
		      __entry->hw_id, __entry->ctx, __entry->seqno,
867
		      !!(__entry->flags & I915_WAIT_LOCKED),
868
		      __entry->flags)
869
);
C
Chris Wilson 已提交
870

871 872 873
DEFINE_EVENT(i915_request, i915_request_wait_end,
	    TP_PROTO(struct i915_request *rq),
	    TP_ARGS(rq)
C
Chris Wilson 已提交
874 875
);

876
TRACE_EVENT_CONDITION(i915_reg_rw,
877
	TP_PROTO(bool write, i915_reg_t reg, u64 val, int len, bool trace),
878

879 880 881
	TP_ARGS(write, reg, val, len, trace),

	TP_CONDITION(trace),
882 883 884 885 886 887 888 889 890 891

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

	TP_fast_assign(
		__entry->val = (u64)val;
892
		__entry->reg = i915_mmio_reg_offset(reg);
893 894 895 896 897 898 899 900 901
		__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))
902 903
);

904 905 906 907 908 909 910 911 912 913 914 915 916 917 918
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)
);

919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939
/**
 * 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;
940
			__entry->dev = vm->i915->drm.primary->index;
941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
	),

	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,
964
	TP_PROTO(struct i915_gem_context *ctx),
965 966 967 968
	TP_ARGS(ctx),

	TP_STRUCT__entry(
			__field(u32, dev)
969
			__field(struct i915_gem_context *, ctx)
970
			__field(u32, hw_id)
971 972 973 974
			__field(struct i915_address_space *, vm)
	),

	TP_fast_assign(
975
			__entry->dev = ctx->i915->drm.primary->index;
976
			__entry->ctx = ctx;
977
			__entry->hw_id = ctx->hw_id;
978
			__entry->vm = ctx->ppgtt ? &ctx->ppgtt->vm : NULL;
979 980
	),

981 982
	TP_printk("dev=%u, ctx=%p, ctx_vm=%p, hw_id=%u",
		  __entry->dev, __entry->ctx, __entry->vm, __entry->hw_id)
983 984 985
)

DEFINE_EVENT(i915_context, i915_context_create,
986
	TP_PROTO(struct i915_gem_context *ctx),
987 988 989 990
	TP_ARGS(ctx)
);

DEFINE_EVENT(i915_context, i915_context_free,
991
	TP_PROTO(struct i915_gem_context *ctx),
992 993 994
	TP_ARGS(ctx)
);

C
Chris Wilson 已提交
995 996 997 998
#endif /* _I915_TRACE_H_ */

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