i915_trace.h 17.7 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

#undef TRACE_SYSTEM
#define TRACE_SYSTEM i915
#define TRACE_INCLUDE_FILE i915_trace

17 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
/* 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 已提交
91 92 93
/* object tracking */

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

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

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

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

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

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

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

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

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

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

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

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

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 已提交
161 162

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

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

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

C
Chris Wilson 已提交
182 183 184
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 已提交
185

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

C
Chris Wilson 已提交
192 193 194 195 196 197 198 199 200 201 202 203 204
	    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 已提交
205 206

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

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

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

C
Chris Wilson 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
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;
			   ),
239

C
Chris Wilson 已提交
240 241 242 243 244 245 246 247
	    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,
248
	    TP_PROTO(struct drm_i915_gem_object *obj),
C
Chris Wilson 已提交
249
	    TP_ARGS(obj),
250

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

	    TP_fast_assign(
			   __entry->obj = obj;
			   ),

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	    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;
344
			   __entry->seqno = i915_gem_request_get_seqno(req);
345 346 347 348 349 350 351 352
			   ),

	    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 已提交
353
TRACE_EVENT(i915_gem_ring_dispatch,
354 355
	    TP_PROTO(struct drm_i915_gem_request *req, u32 flags),
	    TP_ARGS(req, flags),
C
Chris Wilson 已提交
356 357

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

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

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

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

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

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

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

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

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

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

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

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

431
TRACE_EVENT(i915_gem_request_notify,
432
	    TP_PROTO(struct intel_engine_cs *ring),
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
	    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 已提交
449 450
);

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

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

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

	    TP_STRUCT__entry(
			     __field(u32, dev)
			     __field(u32, ring)
468
			     __field(u32, uniq)
469 470 471 472 473 474 475 476 477 478 479
			     __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(
480 481
			   struct intel_engine_cs *ring =
						i915_gem_request_get_ring(req);
482 483
			   __entry->dev = ring->dev->primary->index;
			   __entry->ring = ring->id;
484
			   __entry->uniq = req ? req->uniq : 0;
485 486 487
			   __entry->seqno = i915_gem_request_get_seqno(req);
			   __entry->blocking =
				     mutex_is_locked(&ring->dev->struct_mutex);
488 489
			   ),

490 491 492
	    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")
493
);
C
Chris Wilson 已提交
494

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

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

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

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

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

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

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

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

	    TP_ARGS(plane, obj),

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

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

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

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

	    TP_ARGS(plane, obj),

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

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

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

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

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

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

	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))
589 590
);

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

606 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
/**
 * 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 已提交
710 711 712 713
#endif /* _I915_TRACE_H_ */

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