i915_trace.h 17.8 KB
Newer Older
C
Chris Wilson 已提交
1 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>

#include <drm/drmP.h>
9
#include "i915_drv.h"
10
#include "intel_drv.h"
C
Chris Wilson 已提交
11
#include "intel_ringbuffer.h"
C
Chris Wilson 已提交
12 13 14 15 16 17

#undef TRACE_SYSTEM
#define TRACE_SYSTEM i915
#define TRACE_SYSTEM_STRING __stringify(TRACE_SYSTEM)
#define TRACE_INCLUDE_FILE i915_trace

18 19 20 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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
/* pipe updates */

TRACE_EVENT(i915_pipe_update_start,
	    TP_PROTO(struct intel_crtc *crtc, u32 min, u32 max),
	    TP_ARGS(crtc, min, max),

	    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);
			   __entry->min = min;
			   __entry->max = max;
			   ),

	    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,
	    TP_PROTO(struct intel_crtc *crtc, u32 min, u32 max, u32 frame),
	    TP_ARGS(crtc, min, max, frame),

	    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 = frame;
			   __entry->scanline = intel_get_crtc_scanline(crtc);
			   __entry->min = min;
			   __entry->max = max;
			   ),

	    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,
	    TP_PROTO(struct intel_crtc *crtc, u32 frame),
	    TP_ARGS(crtc, frame),

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

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

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

C
Chris Wilson 已提交
92 93 94
/* object tracking */

TRACE_EVENT(i915_gem_object_create,
95
	    TP_PROTO(struct drm_i915_gem_object *obj),
C
Chris Wilson 已提交
96 97 98
	    TP_ARGS(obj),

	    TP_STRUCT__entry(
99
			     __field(struct drm_i915_gem_object *, obj)
C
Chris Wilson 已提交
100 101 102 103 104
			     __field(u32, size)
			     ),

	    TP_fast_assign(
			   __entry->obj = obj;
105
			   __entry->size = obj->base.size;
C
Chris Wilson 已提交
106 107 108 109 110
			   ),

	    TP_printk("obj=%p, size=%u", __entry->obj, __entry->size)
);

111
TRACE_EVENT(i915_vma_bind,
112 113
	    TP_PROTO(struct i915_vma *vma, unsigned flags),
	    TP_ARGS(vma, flags),
C
Chris Wilson 已提交
114 115

	    TP_STRUCT__entry(
116
			     __field(struct drm_i915_gem_object *, obj)
117
			     __field(struct i915_address_space *, vm)
C
Chris Wilson 已提交
118 119
			     __field(u32, offset)
			     __field(u32, size)
120
			     __field(unsigned, flags)
C
Chris Wilson 已提交
121 122 123
			     ),

	    TP_fast_assign(
124 125 126 127
			   __entry->obj = vma->obj;
			   __entry->vm = vma->vm;
			   __entry->offset = vma->node.start;
			   __entry->size = vma->node.size;
128
			   __entry->flags = flags;
C
Chris Wilson 已提交
129 130
			   ),

131
	    TP_printk("obj=%p, offset=%08x size=%x%s vm=%p",
C
Chris Wilson 已提交
132
		      __entry->obj, __entry->offset, __entry->size,
133
		      __entry->flags & PIN_MAPPABLE ? ", mappable" : "",
134
		      __entry->vm)
C
Chris Wilson 已提交
135 136
);

137 138 139
TRACE_EVENT(i915_vma_unbind,
	    TP_PROTO(struct i915_vma *vma),
	    TP_ARGS(vma),
C
Chris Wilson 已提交
140 141 142

	    TP_STRUCT__entry(
			     __field(struct drm_i915_gem_object *, obj)
143
			     __field(struct i915_address_space *, vm)
C
Chris Wilson 已提交
144 145 146
			     __field(u32, offset)
			     __field(u32, size)
			     ),
C
Chris Wilson 已提交
147

C
Chris Wilson 已提交
148
	    TP_fast_assign(
149 150 151 152
			   __entry->obj = vma->obj;
			   __entry->vm = vma->vm;
			   __entry->offset = vma->node.start;
			   __entry->size = vma->node.size;
C
Chris Wilson 已提交
153
			   ),
C
Chris Wilson 已提交
154

155 156
	    TP_printk("obj=%p, offset=%08x size=%x vm=%p",
		      __entry->obj, __entry->offset, __entry->size, __entry->vm)
C
Chris Wilson 已提交
157 158 159 160 161
);

TRACE_EVENT(i915_gem_object_change_domain,
	    TP_PROTO(struct drm_i915_gem_object *obj, u32 old_read, u32 old_write),
	    TP_ARGS(obj, old_read, old_write),
C
Chris Wilson 已提交
162 163

	    TP_STRUCT__entry(
164
			     __field(struct drm_i915_gem_object *, obj)
C
Chris Wilson 已提交
165 166 167 168 169 170
			     __field(u32, read_domains)
			     __field(u32, write_domain)
			     ),

	    TP_fast_assign(
			   __entry->obj = obj;
C
Chris Wilson 已提交
171 172
			   __entry->read_domains = obj->base.read_domains | (old_read << 16);
			   __entry->write_domain = obj->base.write_domain | (old_write << 16);
C
Chris Wilson 已提交
173 174
			   ),

C
Chris Wilson 已提交
175
	    TP_printk("obj=%p, read=%02x=>%02x, write=%02x=>%02x",
C
Chris Wilson 已提交
176
		      __entry->obj,
C
Chris Wilson 已提交
177 178 179 180
		      __entry->read_domains >> 16,
		      __entry->read_domains & 0xffff,
		      __entry->write_domain >> 16,
		      __entry->write_domain & 0xffff)
C
Chris Wilson 已提交
181 182
);

C
Chris Wilson 已提交
183 184 185
TRACE_EVENT(i915_gem_object_pwrite,
	    TP_PROTO(struct drm_i915_gem_object *obj, u32 offset, u32 len),
	    TP_ARGS(obj, offset, len),
C
Chris Wilson 已提交
186

C
Chris Wilson 已提交
187 188 189 190 191
	    TP_STRUCT__entry(
			     __field(struct drm_i915_gem_object *, obj)
			     __field(u32, offset)
			     __field(u32, len)
			     ),
C
Chris Wilson 已提交
192

C
Chris Wilson 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205
	    TP_fast_assign(
			   __entry->obj = obj;
			   __entry->offset = offset;
			   __entry->len = len;
			   ),

	    TP_printk("obj=%p, offset=%u, len=%u",
		      __entry->obj, __entry->offset, __entry->len)
);

TRACE_EVENT(i915_gem_object_pread,
	    TP_PROTO(struct drm_i915_gem_object *obj, u32 offset, u32 len),
	    TP_ARGS(obj, offset, len),
C
Chris Wilson 已提交
206 207

	    TP_STRUCT__entry(
208
			     __field(struct drm_i915_gem_object *, obj)
C
Chris Wilson 已提交
209 210
			     __field(u32, offset)
			     __field(u32, len)
C
Chris Wilson 已提交
211 212 213 214
			     ),

	    TP_fast_assign(
			   __entry->obj = obj;
C
Chris Wilson 已提交
215 216
			   __entry->offset = offset;
			   __entry->len = len;
C
Chris Wilson 已提交
217 218
			   ),

C
Chris Wilson 已提交
219 220
	    TP_printk("obj=%p, offset=%u, len=%u",
		      __entry->obj, __entry->offset, __entry->len)
C
Chris Wilson 已提交
221 222
);

C
Chris Wilson 已提交
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
TRACE_EVENT(i915_gem_object_fault,
	    TP_PROTO(struct drm_i915_gem_object *obj, u32 index, bool gtt, bool write),
	    TP_ARGS(obj, index, gtt, write),

	    TP_STRUCT__entry(
			     __field(struct drm_i915_gem_object *, obj)
			     __field(u32, index)
			     __field(bool, gtt)
			     __field(bool, write)
			     ),

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

C
Chris Wilson 已提交
241 242 243 244 245 246 247 248
	    TP_printk("obj=%p, %s index=%u %s",
		      __entry->obj,
		      __entry->gtt ? "GTT" : "CPU",
		      __entry->index,
		      __entry->write ? ", writable" : "")
);

DECLARE_EVENT_CLASS(i915_gem_object,
249
	    TP_PROTO(struct drm_i915_gem_object *obj),
C
Chris Wilson 已提交
250
	    TP_ARGS(obj),
251

C
Chris Wilson 已提交
252 253 254 255 256 257 258 259 260
	    TP_STRUCT__entry(
			     __field(struct drm_i915_gem_object *, obj)
			     ),

	    TP_fast_assign(
			   __entry->obj = obj;
			   ),

	    TP_printk("obj=%p", __entry->obj)
261 262
);

C
Chris Wilson 已提交
263 264 265 266
DEFINE_EVENT(i915_gem_object, i915_gem_object_clflush,
	     TP_PROTO(struct drm_i915_gem_object *obj),
	     TP_ARGS(obj)
);
C
Chris Wilson 已提交
267

C
Chris Wilson 已提交
268
DEFINE_EVENT(i915_gem_object, i915_gem_object_destroy,
269
	    TP_PROTO(struct drm_i915_gem_object *obj),
270 271
	    TP_ARGS(obj)
);
C
Chris Wilson 已提交
272

C
Chris Wilson 已提交
273
TRACE_EVENT(i915_gem_evict,
274 275
	    TP_PROTO(struct drm_device *dev, u32 size, u32 align, unsigned flags),
	    TP_ARGS(dev, size, align, flags),
C
Chris Wilson 已提交
276

C
Chris Wilson 已提交
277 278 279 280
	    TP_STRUCT__entry(
			     __field(u32, dev)
			     __field(u32, size)
			     __field(u32, align)
281
			     __field(unsigned, flags)
C
Chris Wilson 已提交
282
			    ),
C
Chris Wilson 已提交
283

C
Chris Wilson 已提交
284 285 286 287
	    TP_fast_assign(
			   __entry->dev = dev->primary->index;
			   __entry->size = size;
			   __entry->align = align;
288
			   __entry->flags = flags;
C
Chris Wilson 已提交
289 290 291 292
			  ),

	    TP_printk("dev=%d, size=%d, align=%d %s",
		      __entry->dev, __entry->size, __entry->align,
293
		      __entry->flags & PIN_MAPPABLE ? ", mappable" : "")
C
Chris Wilson 已提交
294 295
);

C
Chris Wilson 已提交
296
TRACE_EVENT(i915_gem_evict_everything,
C
Chris Wilson 已提交
297 298
	    TP_PROTO(struct drm_device *dev),
	    TP_ARGS(dev),
C
Chris Wilson 已提交
299

C
Chris Wilson 已提交
300 301 302 303 304 305 306
	    TP_STRUCT__entry(
			     __field(u32, dev)
			    ),

	    TP_fast_assign(
			   __entry->dev = dev->primary->index;
			  ),
C
Chris Wilson 已提交
307

C
Chris Wilson 已提交
308
	    TP_printk("dev=%d", __entry->dev)
C
Chris Wilson 已提交
309
);
C
Chris Wilson 已提交
310

311 312 313 314 315
TRACE_EVENT(i915_gem_evict_vm,
	    TP_PROTO(struct i915_address_space *vm),
	    TP_ARGS(vm),

	    TP_STRUCT__entry(
316
			     __field(u32, dev)
317 318 319 320
			     __field(struct i915_address_space *, vm)
			    ),

	    TP_fast_assign(
321
			   __entry->dev = vm->dev->primary->index;
322 323 324
			   __entry->vm = vm;
			  ),

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

328
TRACE_EVENT(i915_gem_ring_sync_to,
329 330
	    TP_PROTO(struct intel_engine_cs *from,
		     struct intel_engine_cs *to,
331 332
		     struct drm_i915_gem_request *req),
	    TP_ARGS(from, to, req),
333 334 335 336 337 338 339 340 341 342 343 344

	    TP_STRUCT__entry(
			     __field(u32, dev)
			     __field(u32, sync_from)
			     __field(u32, sync_to)
			     __field(u32, seqno)
			     ),

	    TP_fast_assign(
			   __entry->dev = from->dev->primary->index;
			   __entry->sync_from = from->id;
			   __entry->sync_to = to->id;
345
			   __entry->seqno = i915_gem_request_get_seqno(req);
346 347 348 349 350 351 352 353
			   ),

	    TP_printk("dev=%u, sync-from=%u, sync-to=%u, seqno=%u",
		      __entry->dev,
		      __entry->sync_from, __entry->sync_to,
		      __entry->seqno)
);

C
Chris Wilson 已提交
354
TRACE_EVENT(i915_gem_ring_dispatch,
355 356
	    TP_PROTO(struct drm_i915_gem_request *req, u32 flags),
	    TP_ARGS(req, flags),
C
Chris Wilson 已提交
357 358

	    TP_STRUCT__entry(
359
			     __field(u32, dev)
C
Chris Wilson 已提交
360
			     __field(u32, ring)
C
Chris Wilson 已提交
361
			     __field(u32, seqno)
362
			     __field(u32, flags)
C
Chris Wilson 已提交
363 364 365
			     ),

	    TP_fast_assign(
366 367
			   struct intel_engine_cs *ring =
						i915_gem_request_get_ring(req);
C
Chris Wilson 已提交
368 369
			   __entry->dev = ring->dev->primary->index;
			   __entry->ring = ring->id;
370
			   __entry->seqno = i915_gem_request_get_seqno(req);
371
			   __entry->flags = flags;
372
			   i915_trace_irq_get(ring, req);
C
Chris Wilson 已提交
373 374
			   ),

375 376
	    TP_printk("dev=%u, ring=%u, seqno=%u, flags=%x",
		      __entry->dev, __entry->ring, __entry->seqno, __entry->flags)
C
Chris Wilson 已提交
377 378
);

C
Chris Wilson 已提交
379
TRACE_EVENT(i915_gem_ring_flush,
380
	    TP_PROTO(struct intel_engine_cs *ring, u32 invalidate, u32 flush),
C
Chris Wilson 已提交
381
	    TP_ARGS(ring, invalidate, flush),
C
Chris Wilson 已提交
382 383

	    TP_STRUCT__entry(
384
			     __field(u32, dev)
C
Chris Wilson 已提交
385 386 387
			     __field(u32, ring)
			     __field(u32, invalidate)
			     __field(u32, flush)
C
Chris Wilson 已提交
388 389 390
			     ),

	    TP_fast_assign(
C
Chris Wilson 已提交
391 392 393 394
			   __entry->dev = ring->dev->primary->index;
			   __entry->ring = ring->id;
			   __entry->invalidate = invalidate;
			   __entry->flush = flush;
C
Chris Wilson 已提交
395 396
			   ),

C
Chris Wilson 已提交
397 398 399
	    TP_printk("dev=%u, ring=%x, invalidate=%04x, flush=%04x",
		      __entry->dev, __entry->ring,
		      __entry->invalidate, __entry->flush)
C
Chris Wilson 已提交
400 401
);

402
DECLARE_EVENT_CLASS(i915_gem_request,
403 404
	    TP_PROTO(struct drm_i915_gem_request *req),
	    TP_ARGS(req),
C
Chris Wilson 已提交
405 406

	    TP_STRUCT__entry(
407
			     __field(u32, dev)
C
Chris Wilson 已提交
408
			     __field(u32, ring)
409
			     __field(u32, uniq)
C
Chris Wilson 已提交
410 411 412 413
			     __field(u32, seqno)
			     ),

	    TP_fast_assign(
414 415
			   struct intel_engine_cs *ring =
						i915_gem_request_get_ring(req);
C
Chris Wilson 已提交
416 417
			   __entry->dev = ring->dev->primary->index;
			   __entry->ring = ring->id;
418
			   __entry->uniq = req ? req->uniq : 0;
419
			   __entry->seqno = i915_gem_request_get_seqno(req);
C
Chris Wilson 已提交
420 421
			   ),

422 423 424
	    TP_printk("dev=%u, ring=%u, uniq=%u, seqno=%u",
		      __entry->dev, __entry->ring, __entry->uniq,
		      __entry->seqno)
C
Chris Wilson 已提交
425 426
);

C
Chris Wilson 已提交
427
DEFINE_EVENT(i915_gem_request, i915_gem_request_add,
428 429
	    TP_PROTO(struct drm_i915_gem_request *req),
	    TP_ARGS(req)
C
Chris Wilson 已提交
430
);
C
Chris Wilson 已提交
431

432
TRACE_EVENT(i915_gem_request_notify,
433
	    TP_PROTO(struct intel_engine_cs *ring),
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
	    TP_ARGS(ring),

	    TP_STRUCT__entry(
			     __field(u32, dev)
			     __field(u32, ring)
			     __field(u32, seqno)
			     ),

	    TP_fast_assign(
			   __entry->dev = ring->dev->primary->index;
			   __entry->ring = ring->id;
			   __entry->seqno = ring->get_seqno(ring, false);
			   ),

	    TP_printk("dev=%u, ring=%u, seqno=%u",
		      __entry->dev, __entry->ring, __entry->seqno)
C
Chris Wilson 已提交
450 451
);

452
DEFINE_EVENT(i915_gem_request, i915_gem_request_retire,
453 454
	    TP_PROTO(struct drm_i915_gem_request *req),
	    TP_ARGS(req)
C
Chris Wilson 已提交
455 456
);

457 458 459 460 461
DEFINE_EVENT(i915_gem_request, i915_gem_request_complete,
	    TP_PROTO(struct drm_i915_gem_request *req),
	    TP_ARGS(req)
);

462
TRACE_EVENT(i915_gem_request_wait_begin,
463 464
	    TP_PROTO(struct drm_i915_gem_request *req),
	    TP_ARGS(req),
465 466 467 468

	    TP_STRUCT__entry(
			     __field(u32, dev)
			     __field(u32, ring)
469
			     __field(u32, uniq)
470 471 472 473 474 475 476 477 478 479 480
			     __field(u32, seqno)
			     __field(bool, blocking)
			     ),

	    /* 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(
481 482
			   struct intel_engine_cs *ring =
						i915_gem_request_get_ring(req);
483 484
			   __entry->dev = ring->dev->primary->index;
			   __entry->ring = ring->id;
485
			   __entry->uniq = req ? req->uniq : 0;
486 487 488
			   __entry->seqno = i915_gem_request_get_seqno(req);
			   __entry->blocking =
				     mutex_is_locked(&ring->dev->struct_mutex);
489 490
			   ),

491 492 493
	    TP_printk("dev=%u, ring=%u, uniq=%u, seqno=%u, blocking=%s",
		      __entry->dev, __entry->ring, __entry->uniq,
		      __entry->seqno, __entry->blocking ?  "yes (NB)" : "no")
494
);
C
Chris Wilson 已提交
495

496
DEFINE_EVENT(i915_gem_request, i915_gem_request_wait_end,
497 498
	    TP_PROTO(struct drm_i915_gem_request *req),
	    TP_ARGS(req)
C
Chris Wilson 已提交
499 500
);

501
DECLARE_EVENT_CLASS(i915_ring,
502
	    TP_PROTO(struct intel_engine_cs *ring),
C
Chris Wilson 已提交
503
	    TP_ARGS(ring),
C
Chris Wilson 已提交
504 505

	    TP_STRUCT__entry(
506
			     __field(u32, dev)
C
Chris Wilson 已提交
507
			     __field(u32, ring)
C
Chris Wilson 已提交
508 509 510
			     ),

	    TP_fast_assign(
C
Chris Wilson 已提交
511 512
			   __entry->dev = ring->dev->primary->index;
			   __entry->ring = ring->id;
C
Chris Wilson 已提交
513 514
			   ),

C
Chris Wilson 已提交
515
	    TP_printk("dev=%u, ring=%u", __entry->dev, __entry->ring)
C
Chris Wilson 已提交
516 517
);

518
DEFINE_EVENT(i915_ring, i915_ring_wait_begin,
519
	    TP_PROTO(struct intel_engine_cs *ring),
C
Chris Wilson 已提交
520
	    TP_ARGS(ring)
521
);
C
Chris Wilson 已提交
522

523
DEFINE_EVENT(i915_ring, i915_ring_wait_end,
524
	    TP_PROTO(struct intel_engine_cs *ring),
C
Chris Wilson 已提交
525
	    TP_ARGS(ring)
C
Chris Wilson 已提交
526 527
);

528
TRACE_EVENT(i915_flip_request,
529
	    TP_PROTO(int plane, struct drm_i915_gem_object *obj),
530 531 532 533 534

	    TP_ARGS(plane, obj),

	    TP_STRUCT__entry(
		    __field(int, plane)
535
		    __field(struct drm_i915_gem_object *, obj)
536 537 538 539 540 541 542 543 544 545 546
		    ),

	    TP_fast_assign(
		    __entry->plane = plane;
		    __entry->obj = obj;
		    ),

	    TP_printk("plane=%d, obj=%p", __entry->plane, __entry->obj)
);

TRACE_EVENT(i915_flip_complete,
547
	    TP_PROTO(int plane, struct drm_i915_gem_object *obj),
548 549 550 551 552

	    TP_ARGS(plane, obj),

	    TP_STRUCT__entry(
		    __field(int, plane)
553
		    __field(struct drm_i915_gem_object *, obj)
554 555 556 557 558 559 560 561 562 563
		    ),

	    TP_fast_assign(
		    __entry->plane = plane;
		    __entry->obj = obj;
		    ),

	    TP_printk("plane=%d, obj=%p", __entry->plane, __entry->obj)
);

564 565
TRACE_EVENT_CONDITION(i915_reg_rw,
	TP_PROTO(bool write, u32 reg, u64 val, int len, bool trace),
566

567 568 569
	TP_ARGS(write, reg, val, len, trace),

	TP_CONDITION(trace),
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589

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

	TP_fast_assign(
		__entry->val = (u64)val;
		__entry->reg = reg;
		__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))
590 591
);

592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
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)
);

607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
/**
 * 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;
			__entry->dev = vm->dev->primary->index;
	),

	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,
	TP_PROTO(struct intel_context *ctx),
	TP_ARGS(ctx),

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

	TP_fast_assign(
			__entry->ctx = ctx;
			__entry->vm = ctx->ppgtt ? &ctx->ppgtt->base : NULL;
			__entry->dev = ctx->file_priv->dev_priv->dev->primary->index;
	),

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

DEFINE_EVENT(i915_context, i915_context_create,
	TP_PROTO(struct intel_context *ctx),
	TP_ARGS(ctx)
);

DEFINE_EVENT(i915_context, i915_context_free,
	TP_PROTO(struct intel_context *ctx),
	TP_ARGS(ctx)
);

/**
 * DOC: switch_mm tracepoint
 *
 * This tracepoint allows tracking of the mm switch, which is an important point
 * in the lifetime of the vm in the legacy submission path. This tracepoint is
 * called only if full ppgtt is enabled.
 */
TRACE_EVENT(switch_mm,
	TP_PROTO(struct intel_engine_cs *ring, struct intel_context *to),

	TP_ARGS(ring, to),

	TP_STRUCT__entry(
			__field(u32, ring)
			__field(struct intel_context *, to)
			__field(struct i915_address_space *, vm)
			__field(u32, dev)
	),

	TP_fast_assign(
			__entry->ring = ring->id;
			__entry->to = to;
			__entry->vm = to->ppgtt? &to->ppgtt->base : NULL;
			__entry->dev = ring->dev->primary->index;
	),

	TP_printk("dev=%u, ring=%u, ctx=%p, ctx_vm=%p",
		  __entry->dev, __entry->ring, __entry->to, __entry->vm)
);

C
Chris Wilson 已提交
711 712 713 714
#endif /* _I915_TRACE_H_ */

/* This part must be outside protection */
#undef TRACE_INCLUDE_PATH
P
Peter Clifton 已提交
715
#define TRACE_INCLUDE_PATH .
C
Chris Wilson 已提交
716
#include <trace/define_trace.h>