1 /* SPDX-License-Identifier: GPL-2.0 */
2 #if !defined(_I915_TRACE_H_) || defined(TRACE_HEADER_MULTI_READ)
5 #include <linux/stringify.h>
6 #include <linux/types.h>
7 #include <linux/tracepoint.h>
9 #include <drm/drm_drv.h>
11 #include "display/intel_display_types.h"
12 #include "gt/intel_engine.h"
18 #define TRACE_SYSTEM i915
19 #define TRACE_INCLUDE_FILE i915_trace
21 /* watermark/fifo updates */
23 TRACE_EVENT(intel_pipe_enable
,
24 TP_PROTO(struct intel_crtc
*crtc
),
28 __array(u32
, frame
, 3)
29 __array(u32
, scanline
, 3)
30 __field(enum pipe
, pipe
)
33 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
34 struct intel_crtc
*it__
;
35 for_each_intel_crtc(&dev_priv
->drm
, it__
) {
36 __entry
->frame
[it__
->pipe
] = intel_crtc_get_vblank_counter(it__
);
37 __entry
->scanline
[it__
->pipe
] = intel_get_crtc_scanline(it__
);
39 __entry
->pipe
= crtc
->pipe
;
42 TP_printk("pipe %c enable, pipe A: frame=%u, scanline=%u, pipe B: frame=%u, scanline=%u, pipe C: frame=%u, scanline=%u",
43 pipe_name(__entry
->pipe
),
44 __entry
->frame
[PIPE_A
], __entry
->scanline
[PIPE_A
],
45 __entry
->frame
[PIPE_B
], __entry
->scanline
[PIPE_B
],
46 __entry
->frame
[PIPE_C
], __entry
->scanline
[PIPE_C
])
49 TRACE_EVENT(intel_pipe_disable
,
50 TP_PROTO(struct intel_crtc
*crtc
),
54 __array(u32
, frame
, 3)
55 __array(u32
, scanline
, 3)
56 __field(enum pipe
, pipe
)
60 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
61 struct intel_crtc
*it__
;
62 for_each_intel_crtc(&dev_priv
->drm
, it__
) {
63 __entry
->frame
[it__
->pipe
] = intel_crtc_get_vblank_counter(it__
);
64 __entry
->scanline
[it__
->pipe
] = intel_get_crtc_scanline(it__
);
66 __entry
->pipe
= crtc
->pipe
;
69 TP_printk("pipe %c disable, pipe A: frame=%u, scanline=%u, pipe B: frame=%u, scanline=%u, pipe C: frame=%u, scanline=%u",
70 pipe_name(__entry
->pipe
),
71 __entry
->frame
[PIPE_A
], __entry
->scanline
[PIPE_A
],
72 __entry
->frame
[PIPE_B
], __entry
->scanline
[PIPE_B
],
73 __entry
->frame
[PIPE_C
], __entry
->scanline
[PIPE_C
])
76 TRACE_EVENT(intel_pipe_crc
,
77 TP_PROTO(struct intel_crtc
*crtc
, const u32
*crcs
),
81 __field(enum pipe
, pipe
)
83 __field(u32
, scanline
)
88 __entry
->pipe
= crtc
->pipe
;
89 __entry
->frame
= intel_crtc_get_vblank_counter(crtc
);
90 __entry
->scanline
= intel_get_crtc_scanline(crtc
);
91 memcpy(__entry
->crcs
, crcs
, sizeof(__entry
->crcs
));
94 TP_printk("pipe %c, frame=%u, scanline=%u crc=%08x %08x %08x %08x %08x",
95 pipe_name(__entry
->pipe
), __entry
->frame
, __entry
->scanline
,
96 __entry
->crcs
[0], __entry
->crcs
[1], __entry
->crcs
[2],
97 __entry
->crcs
[3], __entry
->crcs
[4])
100 TRACE_EVENT(intel_cpu_fifo_underrun
,
101 TP_PROTO(struct drm_i915_private
*dev_priv
, enum pipe pipe
),
102 TP_ARGS(dev_priv
, pipe
),
105 __field(enum pipe
, pipe
)
107 __field(u32
, scanline
)
111 struct intel_crtc
*crtc
= intel_get_crtc_for_pipe(dev_priv
, pipe
);
112 __entry
->pipe
= pipe
;
113 __entry
->frame
= intel_crtc_get_vblank_counter(crtc
);
114 __entry
->scanline
= intel_get_crtc_scanline(crtc
);
117 TP_printk("pipe %c, frame=%u, scanline=%u",
118 pipe_name(__entry
->pipe
),
119 __entry
->frame
, __entry
->scanline
)
122 TRACE_EVENT(intel_pch_fifo_underrun
,
123 TP_PROTO(struct drm_i915_private
*dev_priv
, enum pipe pch_transcoder
),
124 TP_ARGS(dev_priv
, pch_transcoder
),
127 __field(enum pipe
, pipe
)
129 __field(u32
, scanline
)
133 enum pipe pipe
= pch_transcoder
;
134 struct intel_crtc
*crtc
= intel_get_crtc_for_pipe(dev_priv
, pipe
);
135 __entry
->pipe
= pipe
;
136 __entry
->frame
= intel_crtc_get_vblank_counter(crtc
);
137 __entry
->scanline
= intel_get_crtc_scanline(crtc
);
140 TP_printk("pch transcoder %c, frame=%u, scanline=%u",
141 pipe_name(__entry
->pipe
),
142 __entry
->frame
, __entry
->scanline
)
145 TRACE_EVENT(intel_memory_cxsr
,
146 TP_PROTO(struct drm_i915_private
*dev_priv
, bool old
, bool new),
147 TP_ARGS(dev_priv
, old
, new),
150 __array(u32
, frame
, 3)
151 __array(u32
, scanline
, 3)
157 struct intel_crtc
*crtc
;
158 for_each_intel_crtc(&dev_priv
->drm
, crtc
) {
159 __entry
->frame
[crtc
->pipe
] = intel_crtc_get_vblank_counter(crtc
);
160 __entry
->scanline
[crtc
->pipe
] = intel_get_crtc_scanline(crtc
);
166 TP_printk("%s->%s, pipe A: frame=%u, scanline=%u, pipe B: frame=%u, scanline=%u, pipe C: frame=%u, scanline=%u",
167 onoff(__entry
->old
), onoff(__entry
->new),
168 __entry
->frame
[PIPE_A
], __entry
->scanline
[PIPE_A
],
169 __entry
->frame
[PIPE_B
], __entry
->scanline
[PIPE_B
],
170 __entry
->frame
[PIPE_C
], __entry
->scanline
[PIPE_C
])
174 TP_PROTO(struct intel_crtc
*crtc
, const struct g4x_wm_values
*wm
),
178 __field(enum pipe
, pipe
)
180 __field(u32
, scanline
)
181 __field(u16
, primary
)
184 __field(u16
, sr_plane
)
185 __field(u16
, sr_cursor
)
187 __field(u16
, hpll_plane
)
188 __field(u16
, hpll_cursor
)
189 __field(u16
, hpll_fbc
)
196 __entry
->pipe
= crtc
->pipe
;
197 __entry
->frame
= intel_crtc_get_vblank_counter(crtc
);
198 __entry
->scanline
= intel_get_crtc_scanline(crtc
);
199 __entry
->primary
= wm
->pipe
[crtc
->pipe
].plane
[PLANE_PRIMARY
];
200 __entry
->sprite
= wm
->pipe
[crtc
->pipe
].plane
[PLANE_SPRITE0
];
201 __entry
->cursor
= wm
->pipe
[crtc
->pipe
].plane
[PLANE_CURSOR
];
202 __entry
->sr_plane
= wm
->sr
.plane
;
203 __entry
->sr_cursor
= wm
->sr
.cursor
;
204 __entry
->sr_fbc
= wm
->sr
.fbc
;
205 __entry
->hpll_plane
= wm
->hpll
.plane
;
206 __entry
->hpll_cursor
= wm
->hpll
.cursor
;
207 __entry
->hpll_fbc
= wm
->hpll
.fbc
;
208 __entry
->cxsr
= wm
->cxsr
;
209 __entry
->hpll
= wm
->hpll_en
;
210 __entry
->fbc
= wm
->fbc_en
;
213 TP_printk("pipe %c, frame=%u, scanline=%u, wm %d/%d/%d, sr %s/%d/%d/%d, hpll %s/%d/%d/%d, fbc %s",
214 pipe_name(__entry
->pipe
), __entry
->frame
, __entry
->scanline
,
215 __entry
->primary
, __entry
->sprite
, __entry
->cursor
,
216 yesno(__entry
->cxsr
), __entry
->sr_plane
, __entry
->sr_cursor
, __entry
->sr_fbc
,
217 yesno(__entry
->hpll
), __entry
->hpll_plane
, __entry
->hpll_cursor
, __entry
->hpll_fbc
,
222 TP_PROTO(struct intel_crtc
*crtc
, const struct vlv_wm_values
*wm
),
226 __field(enum pipe
, pipe
)
228 __field(u32
, scanline
)
231 __field(u32
, primary
)
232 __field(u32
, sprite0
)
233 __field(u32
, sprite1
)
235 __field(u32
, sr_plane
)
236 __field(u32
, sr_cursor
)
240 __entry
->pipe
= crtc
->pipe
;
241 __entry
->frame
= intel_crtc_get_vblank_counter(crtc
);
242 __entry
->scanline
= intel_get_crtc_scanline(crtc
);
243 __entry
->level
= wm
->level
;
244 __entry
->cxsr
= wm
->cxsr
;
245 __entry
->primary
= wm
->pipe
[crtc
->pipe
].plane
[PLANE_PRIMARY
];
246 __entry
->sprite0
= wm
->pipe
[crtc
->pipe
].plane
[PLANE_SPRITE0
];
247 __entry
->sprite1
= wm
->pipe
[crtc
->pipe
].plane
[PLANE_SPRITE1
];
248 __entry
->cursor
= wm
->pipe
[crtc
->pipe
].plane
[PLANE_CURSOR
];
249 __entry
->sr_plane
= wm
->sr
.plane
;
250 __entry
->sr_cursor
= wm
->sr
.cursor
;
253 TP_printk("pipe %c, frame=%u, scanline=%u, level=%d, cxsr=%d, wm %d/%d/%d/%d, sr %d/%d",
254 pipe_name(__entry
->pipe
), __entry
->frame
,
255 __entry
->scanline
, __entry
->level
, __entry
->cxsr
,
256 __entry
->primary
, __entry
->sprite0
, __entry
->sprite1
, __entry
->cursor
,
257 __entry
->sr_plane
, __entry
->sr_cursor
)
260 TRACE_EVENT(vlv_fifo_size
,
261 TP_PROTO(struct intel_crtc
*crtc
, u32 sprite0_start
, u32 sprite1_start
, u32 fifo_size
),
262 TP_ARGS(crtc
, sprite0_start
, sprite1_start
, fifo_size
),
265 __field(enum pipe
, pipe
)
267 __field(u32
, scanline
)
268 __field(u32
, sprite0_start
)
269 __field(u32
, sprite1_start
)
270 __field(u32
, fifo_size
)
274 __entry
->pipe
= crtc
->pipe
;
275 __entry
->frame
= intel_crtc_get_vblank_counter(crtc
);
276 __entry
->scanline
= intel_get_crtc_scanline(crtc
);
277 __entry
->sprite0_start
= sprite0_start
;
278 __entry
->sprite1_start
= sprite1_start
;
279 __entry
->fifo_size
= fifo_size
;
282 TP_printk("pipe %c, frame=%u, scanline=%u, %d/%d/%d",
283 pipe_name(__entry
->pipe
), __entry
->frame
,
284 __entry
->scanline
, __entry
->sprite0_start
,
285 __entry
->sprite1_start
, __entry
->fifo_size
)
290 TRACE_EVENT(intel_update_plane
,
291 TP_PROTO(struct drm_plane
*plane
, struct intel_crtc
*crtc
),
292 TP_ARGS(plane
, crtc
),
295 __field(enum pipe
, pipe
)
297 __field(u32
, scanline
)
300 __string(name
, plane
->name
)
304 __assign_str(name
, plane
->name
);
305 __entry
->pipe
= crtc
->pipe
;
306 __entry
->frame
= intel_crtc_get_vblank_counter(crtc
);
307 __entry
->scanline
= intel_get_crtc_scanline(crtc
);
308 memcpy(__entry
->src
, &plane
->state
->src
, sizeof(__entry
->src
));
309 memcpy(__entry
->dst
, &plane
->state
->dst
, sizeof(__entry
->dst
));
312 TP_printk("pipe %c, plane %s, frame=%u, scanline=%u, " DRM_RECT_FP_FMT
" -> " DRM_RECT_FMT
,
313 pipe_name(__entry
->pipe
), __get_str(name
),
314 __entry
->frame
, __entry
->scanline
,
315 DRM_RECT_FP_ARG((const struct drm_rect
*)__entry
->src
),
316 DRM_RECT_ARG((const struct drm_rect
*)__entry
->dst
))
319 TRACE_EVENT(intel_disable_plane
,
320 TP_PROTO(struct drm_plane
*plane
, struct intel_crtc
*crtc
),
321 TP_ARGS(plane
, crtc
),
324 __field(enum pipe
, pipe
)
326 __field(u32
, scanline
)
327 __string(name
, plane
->name
)
331 __assign_str(name
, plane
->name
);
332 __entry
->pipe
= crtc
->pipe
;
333 __entry
->frame
= intel_crtc_get_vblank_counter(crtc
);
334 __entry
->scanline
= intel_get_crtc_scanline(crtc
);
337 TP_printk("pipe %c, plane %s, frame=%u, scanline=%u",
338 pipe_name(__entry
->pipe
), __get_str(name
),
339 __entry
->frame
, __entry
->scanline
)
344 TRACE_EVENT(intel_fbc_activate
,
345 TP_PROTO(struct intel_crtc
*crtc
),
349 __field(enum pipe
, pipe
)
351 __field(u32
, scanline
)
355 __entry
->pipe
= crtc
->pipe
;
356 __entry
->frame
= intel_crtc_get_vblank_counter(crtc
);
357 __entry
->scanline
= intel_get_crtc_scanline(crtc
);
360 TP_printk("pipe %c, frame=%u, scanline=%u",
361 pipe_name(__entry
->pipe
), __entry
->frame
, __entry
->scanline
)
364 TRACE_EVENT(intel_fbc_deactivate
,
365 TP_PROTO(struct intel_crtc
*crtc
),
369 __field(enum pipe
, pipe
)
371 __field(u32
, scanline
)
375 __entry
->pipe
= crtc
->pipe
;
376 __entry
->frame
= intel_crtc_get_vblank_counter(crtc
);
377 __entry
->scanline
= intel_get_crtc_scanline(crtc
);
380 TP_printk("pipe %c, frame=%u, scanline=%u",
381 pipe_name(__entry
->pipe
), __entry
->frame
, __entry
->scanline
)
384 TRACE_EVENT(intel_fbc_nuke
,
385 TP_PROTO(struct intel_crtc
*crtc
),
389 __field(enum pipe
, pipe
)
391 __field(u32
, scanline
)
395 __entry
->pipe
= crtc
->pipe
;
396 __entry
->frame
= intel_crtc_get_vblank_counter(crtc
);
397 __entry
->scanline
= intel_get_crtc_scanline(crtc
);
400 TP_printk("pipe %c, frame=%u, scanline=%u",
401 pipe_name(__entry
->pipe
), __entry
->frame
, __entry
->scanline
)
406 TRACE_EVENT(intel_pipe_update_start
,
407 TP_PROTO(struct intel_crtc
*crtc
),
411 __field(enum pipe
, pipe
)
413 __field(u32
, scanline
)
419 __entry
->pipe
= crtc
->pipe
;
420 __entry
->frame
= intel_crtc_get_vblank_counter(crtc
);
421 __entry
->scanline
= intel_get_crtc_scanline(crtc
);
422 __entry
->min
= crtc
->debug
.min_vbl
;
423 __entry
->max
= crtc
->debug
.max_vbl
;
426 TP_printk("pipe %c, frame=%u, scanline=%u, min=%u, max=%u",
427 pipe_name(__entry
->pipe
), __entry
->frame
,
428 __entry
->scanline
, __entry
->min
, __entry
->max
)
431 TRACE_EVENT(intel_pipe_update_vblank_evaded
,
432 TP_PROTO(struct intel_crtc
*crtc
),
436 __field(enum pipe
, pipe
)
438 __field(u32
, scanline
)
444 __entry
->pipe
= crtc
->pipe
;
445 __entry
->frame
= crtc
->debug
.start_vbl_count
;
446 __entry
->scanline
= crtc
->debug
.scanline_start
;
447 __entry
->min
= crtc
->debug
.min_vbl
;
448 __entry
->max
= crtc
->debug
.max_vbl
;
451 TP_printk("pipe %c, frame=%u, scanline=%u, min=%u, max=%u",
452 pipe_name(__entry
->pipe
), __entry
->frame
,
453 __entry
->scanline
, __entry
->min
, __entry
->max
)
456 TRACE_EVENT(intel_pipe_update_end
,
457 TP_PROTO(struct intel_crtc
*crtc
, u32 frame
, int scanline_end
),
458 TP_ARGS(crtc
, frame
, scanline_end
),
461 __field(enum pipe
, pipe
)
463 __field(u32
, scanline
)
467 __entry
->pipe
= crtc
->pipe
;
468 __entry
->frame
= frame
;
469 __entry
->scanline
= scanline_end
;
472 TP_printk("pipe %c, frame=%u, scanline=%u",
473 pipe_name(__entry
->pipe
), __entry
->frame
,
477 /* object tracking */
479 TRACE_EVENT(i915_gem_object_create
,
480 TP_PROTO(struct drm_i915_gem_object
*obj
),
484 __field(struct drm_i915_gem_object
*, obj
)
490 __entry
->size
= obj
->base
.size
;
493 TP_printk("obj=%p, size=0x%llx", __entry
->obj
, __entry
->size
)
496 TRACE_EVENT(i915_gem_shrink
,
497 TP_PROTO(struct drm_i915_private
*i915
, unsigned long target
, unsigned flags
),
498 TP_ARGS(i915
, target
, flags
),
502 __field(unsigned long, target
)
503 __field(unsigned, flags
)
507 __entry
->dev
= i915
->drm
.primary
->index
;
508 __entry
->target
= target
;
509 __entry
->flags
= flags
;
512 TP_printk("dev=%d, target=%lu, flags=%x",
513 __entry
->dev
, __entry
->target
, __entry
->flags
)
516 TRACE_EVENT(i915_vma_bind
,
517 TP_PROTO(struct i915_vma
*vma
, unsigned flags
),
521 __field(struct drm_i915_gem_object
*, obj
)
522 __field(struct i915_address_space
*, vm
)
525 __field(unsigned, flags
)
529 __entry
->obj
= vma
->obj
;
530 __entry
->vm
= vma
->vm
;
531 __entry
->offset
= vma
->node
.start
;
532 __entry
->size
= vma
->node
.size
;
533 __entry
->flags
= flags
;
536 TP_printk("obj=%p, offset=0x%016llx size=0x%llx%s vm=%p",
537 __entry
->obj
, __entry
->offset
, __entry
->size
,
538 __entry
->flags
& PIN_MAPPABLE
? ", mappable" : "",
542 TRACE_EVENT(i915_vma_unbind
,
543 TP_PROTO(struct i915_vma
*vma
),
547 __field(struct drm_i915_gem_object
*, obj
)
548 __field(struct i915_address_space
*, vm
)
554 __entry
->obj
= vma
->obj
;
555 __entry
->vm
= vma
->vm
;
556 __entry
->offset
= vma
->node
.start
;
557 __entry
->size
= vma
->node
.size
;
560 TP_printk("obj=%p, offset=0x%016llx size=0x%llx vm=%p",
561 __entry
->obj
, __entry
->offset
, __entry
->size
, __entry
->vm
)
564 TRACE_EVENT(i915_gem_object_pwrite
,
565 TP_PROTO(struct drm_i915_gem_object
*obj
, u64 offset
, u64 len
),
566 TP_ARGS(obj
, offset
, len
),
569 __field(struct drm_i915_gem_object
*, obj
)
576 __entry
->offset
= offset
;
580 TP_printk("obj=%p, offset=0x%llx, len=0x%llx",
581 __entry
->obj
, __entry
->offset
, __entry
->len
)
584 TRACE_EVENT(i915_gem_object_pread
,
585 TP_PROTO(struct drm_i915_gem_object
*obj
, u64 offset
, u64 len
),
586 TP_ARGS(obj
, offset
, len
),
589 __field(struct drm_i915_gem_object
*, obj
)
596 __entry
->offset
= offset
;
600 TP_printk("obj=%p, offset=0x%llx, len=0x%llx",
601 __entry
->obj
, __entry
->offset
, __entry
->len
)
604 TRACE_EVENT(i915_gem_object_fault
,
605 TP_PROTO(struct drm_i915_gem_object
*obj
, u64 index
, bool gtt
, bool write
),
606 TP_ARGS(obj
, index
, gtt
, write
),
609 __field(struct drm_i915_gem_object
*, obj
)
617 __entry
->index
= index
;
619 __entry
->write
= write
;
622 TP_printk("obj=%p, %s index=%llu %s",
624 __entry
->gtt
? "GTT" : "CPU",
626 __entry
->write
? ", writable" : "")
629 DECLARE_EVENT_CLASS(i915_gem_object
,
630 TP_PROTO(struct drm_i915_gem_object
*obj
),
634 __field(struct drm_i915_gem_object
*, obj
)
641 TP_printk("obj=%p", __entry
->obj
)
644 DEFINE_EVENT(i915_gem_object
, i915_gem_object_clflush
,
645 TP_PROTO(struct drm_i915_gem_object
*obj
),
649 DEFINE_EVENT(i915_gem_object
, i915_gem_object_destroy
,
650 TP_PROTO(struct drm_i915_gem_object
*obj
),
654 TRACE_EVENT(i915_gem_evict
,
655 TP_PROTO(struct i915_address_space
*vm
, u64 size
, u64 align
, unsigned int flags
),
656 TP_ARGS(vm
, size
, align
, flags
),
660 __field(struct i915_address_space
*, vm
)
663 __field(unsigned int, flags
)
667 __entry
->dev
= vm
->i915
->drm
.primary
->index
;
669 __entry
->size
= size
;
670 __entry
->align
= align
;
671 __entry
->flags
= flags
;
674 TP_printk("dev=%d, vm=%p, size=0x%llx, align=0x%llx %s",
675 __entry
->dev
, __entry
->vm
, __entry
->size
, __entry
->align
,
676 __entry
->flags
& PIN_MAPPABLE
? ", mappable" : "")
679 TRACE_EVENT(i915_gem_evict_node
,
680 TP_PROTO(struct i915_address_space
*vm
, struct drm_mm_node
*node
, unsigned int flags
),
681 TP_ARGS(vm
, node
, flags
),
685 __field(struct i915_address_space
*, vm
)
688 __field(unsigned long, color
)
689 __field(unsigned int, flags
)
693 __entry
->dev
= vm
->i915
->drm
.primary
->index
;
695 __entry
->start
= node
->start
;
696 __entry
->size
= node
->size
;
697 __entry
->color
= node
->color
;
698 __entry
->flags
= flags
;
701 TP_printk("dev=%d, vm=%p, start=0x%llx size=0x%llx, color=0x%lx, flags=%x",
702 __entry
->dev
, __entry
->vm
,
703 __entry
->start
, __entry
->size
,
704 __entry
->color
, __entry
->flags
)
707 TRACE_EVENT(i915_gem_evict_vm
,
708 TP_PROTO(struct i915_address_space
*vm
),
713 __field(struct i915_address_space
*, vm
)
717 __entry
->dev
= vm
->i915
->drm
.primary
->index
;
721 TP_printk("dev=%d, vm=%p", __entry
->dev
, __entry
->vm
)
724 TRACE_EVENT(i915_request_queue
,
725 TP_PROTO(struct i915_request
*rq
, u32 flags
),
732 __field(u16
, instance
)
738 __entry
->dev
= rq
->engine
->i915
->drm
.primary
->index
;
739 __entry
->class = rq
->engine
->uabi_class
;
740 __entry
->instance
= rq
->engine
->uabi_instance
;
741 __entry
->ctx
= rq
->fence
.context
;
742 __entry
->seqno
= rq
->fence
.seqno
;
743 __entry
->flags
= flags
;
746 TP_printk("dev=%u, engine=%u:%u, ctx=%llu, seqno=%u, flags=0x%x",
747 __entry
->dev
, __entry
->class, __entry
->instance
,
748 __entry
->ctx
, __entry
->seqno
, __entry
->flags
)
751 DECLARE_EVENT_CLASS(i915_request
,
752 TP_PROTO(struct i915_request
*rq
),
759 __field(u16
, instance
)
764 __entry
->dev
= rq
->engine
->i915
->drm
.primary
->index
;
765 __entry
->class = rq
->engine
->uabi_class
;
766 __entry
->instance
= rq
->engine
->uabi_instance
;
767 __entry
->ctx
= rq
->fence
.context
;
768 __entry
->seqno
= rq
->fence
.seqno
;
771 TP_printk("dev=%u, engine=%u:%u, ctx=%llu, seqno=%u",
772 __entry
->dev
, __entry
->class, __entry
->instance
,
773 __entry
->ctx
, __entry
->seqno
)
776 DEFINE_EVENT(i915_request
, i915_request_add
,
777 TP_PROTO(struct i915_request
*rq
),
781 #if defined(CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS)
782 DEFINE_EVENT(i915_request
, i915_request_submit
,
783 TP_PROTO(struct i915_request
*rq
),
787 DEFINE_EVENT(i915_request
, i915_request_execute
,
788 TP_PROTO(struct i915_request
*rq
),
792 TRACE_EVENT(i915_request_in
,
793 TP_PROTO(struct i915_request
*rq
, unsigned int port
),
800 __field(u16
, instance
)
807 __entry
->dev
= rq
->engine
->i915
->drm
.primary
->index
;
808 __entry
->class = rq
->engine
->uabi_class
;
809 __entry
->instance
= rq
->engine
->uabi_instance
;
810 __entry
->ctx
= rq
->fence
.context
;
811 __entry
->seqno
= rq
->fence
.seqno
;
812 __entry
->prio
= rq
->sched
.attr
.priority
;
813 __entry
->port
= port
;
816 TP_printk("dev=%u, engine=%u:%u, ctx=%llu, seqno=%u, prio=%d, port=%u",
817 __entry
->dev
, __entry
->class, __entry
->instance
,
818 __entry
->ctx
, __entry
->seqno
,
819 __entry
->prio
, __entry
->port
)
822 TRACE_EVENT(i915_request_out
,
823 TP_PROTO(struct i915_request
*rq
),
830 __field(u16
, instance
)
832 __field(u32
, completed
)
836 __entry
->dev
= rq
->engine
->i915
->drm
.primary
->index
;
837 __entry
->class = rq
->engine
->uabi_class
;
838 __entry
->instance
= rq
->engine
->uabi_instance
;
839 __entry
->ctx
= rq
->fence
.context
;
840 __entry
->seqno
= rq
->fence
.seqno
;
841 __entry
->completed
= i915_request_completed(rq
);
844 TP_printk("dev=%u, engine=%u:%u, ctx=%llu, seqno=%u, completed?=%u",
845 __entry
->dev
, __entry
->class, __entry
->instance
,
846 __entry
->ctx
, __entry
->seqno
, __entry
->completed
)
850 #if !defined(TRACE_HEADER_MULTI_READ)
852 trace_i915_request_submit(struct i915_request
*rq
)
857 trace_i915_request_execute(struct i915_request
*rq
)
862 trace_i915_request_in(struct i915_request
*rq
, unsigned int port
)
867 trace_i915_request_out(struct i915_request
*rq
)
873 DEFINE_EVENT(i915_request
, i915_request_retire
,
874 TP_PROTO(struct i915_request
*rq
),
878 TRACE_EVENT(i915_request_wait_begin
,
879 TP_PROTO(struct i915_request
*rq
, unsigned int flags
),
886 __field(u16
, instance
)
888 __field(unsigned int, flags
)
891 /* NB: the blocking information is racy since mutex_is_locked
892 * doesn't check that the current thread holds the lock. The only
893 * other option would be to pass the boolean information of whether
894 * or not the class was blocking down through the stack which is
898 __entry
->dev
= rq
->engine
->i915
->drm
.primary
->index
;
899 __entry
->class = rq
->engine
->uabi_class
;
900 __entry
->instance
= rq
->engine
->uabi_instance
;
901 __entry
->ctx
= rq
->fence
.context
;
902 __entry
->seqno
= rq
->fence
.seqno
;
903 __entry
->flags
= flags
;
906 TP_printk("dev=%u, engine=%u:%u, ctx=%llu, seqno=%u, flags=0x%x",
907 __entry
->dev
, __entry
->class, __entry
->instance
,
908 __entry
->ctx
, __entry
->seqno
,
912 DEFINE_EVENT(i915_request
, i915_request_wait_end
,
913 TP_PROTO(struct i915_request
*rq
),
917 TRACE_EVENT_CONDITION(i915_reg_rw
,
918 TP_PROTO(bool write
, i915_reg_t reg
, u64 val
, int len
, bool trace
),
920 TP_ARGS(write
, reg
, val
, len
, trace
),
932 __entry
->val
= (u64
)val
;
933 __entry
->reg
= i915_mmio_reg_offset(reg
);
934 __entry
->write
= write
;
938 TP_printk("%s reg=0x%x, len=%d, val=(0x%x, 0x%x)",
939 __entry
->write
? "write" : "read",
940 __entry
->reg
, __entry
->len
,
941 (u32
)(__entry
->val
& 0xffffffff),
942 (u32
)(__entry
->val
>> 32))
945 TRACE_EVENT(intel_gpu_freq_change
,
954 __entry
->freq
= freq
;
957 TP_printk("new_freq=%u", __entry
->freq
)
961 * DOC: i915_ppgtt_create and i915_ppgtt_release tracepoints
963 * With full ppgtt enabled each process using drm will allocate at least one
964 * translation table. With these traces it is possible to keep track of the
965 * allocation and of the lifetime of the tables; this can be used during
966 * testing/debug to verify that we are not leaking ppgtts.
967 * These traces identify the ppgtt through the vm pointer, which is also printed
968 * by the i915_vma_bind and i915_vma_unbind tracepoints.
970 DECLARE_EVENT_CLASS(i915_ppgtt
,
971 TP_PROTO(struct i915_address_space
*vm
),
975 __field(struct i915_address_space
*, vm
)
981 __entry
->dev
= vm
->i915
->drm
.primary
->index
;
984 TP_printk("dev=%u, vm=%p", __entry
->dev
, __entry
->vm
)
987 DEFINE_EVENT(i915_ppgtt
, i915_ppgtt_create
,
988 TP_PROTO(struct i915_address_space
*vm
),
992 DEFINE_EVENT(i915_ppgtt
, i915_ppgtt_release
,
993 TP_PROTO(struct i915_address_space
*vm
),
998 * DOC: i915_context_create and i915_context_free tracepoints
1000 * These tracepoints are used to track creation and deletion of contexts.
1001 * If full ppgtt is enabled, they also print the address of the vm assigned to
1004 DECLARE_EVENT_CLASS(i915_context
,
1005 TP_PROTO(struct i915_gem_context
*ctx
),
1010 __field(struct i915_gem_context
*, ctx
)
1011 __field(struct i915_address_space
*, vm
)
1015 __entry
->dev
= ctx
->i915
->drm
.primary
->index
;
1017 __entry
->vm
= rcu_access_pointer(ctx
->vm
);
1020 TP_printk("dev=%u, ctx=%p, ctx_vm=%p",
1021 __entry
->dev
, __entry
->ctx
, __entry
->vm
)
1024 DEFINE_EVENT(i915_context
, i915_context_create
,
1025 TP_PROTO(struct i915_gem_context
*ctx
),
1029 DEFINE_EVENT(i915_context
, i915_context_free
,
1030 TP_PROTO(struct i915_gem_context
*ctx
),
1034 #endif /* _I915_TRACE_H_ */
1036 /* This part must be outside protection */
1037 #undef TRACE_INCLUDE_PATH
1038 #define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/i915
1039 #include <trace/define_trace.h>