Skip to content

Commit

Permalink
drm/i915: add tracepoints for flip requests & completions
Browse files Browse the repository at this point in the history
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
  • Loading branch information
Jesse Barnes authored and Dave Airlie committed Jul 2, 2010
1 parent b9c2c9a commit e5510fa
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
36 changes: 36 additions & 0 deletions drivers/gpu/drm/i915/i915_trace.h
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,42 @@ DEFINE_EVENT(i915_ring, i915_ring_wait_end,
TP_ARGS(dev)
);

TRACE_EVENT(i915_flip_request,
TP_PROTO(int plane, struct drm_gem_object *obj),

TP_ARGS(plane, obj),

TP_STRUCT__entry(
__field(int, plane)
__field(struct drm_gem_object *, obj)
),

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

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

TRACE_EVENT(i915_flip_complete,
TP_PROTO(int plane, struct drm_gem_object *obj),

TP_ARGS(plane, obj),

TP_STRUCT__entry(
__field(int, plane)
__field(struct drm_gem_object *, obj)
),

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

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

#endif /* _I915_TRACE_H_ */

/* This part must be outside protection */
Expand Down
5 changes: 5 additions & 0 deletions drivers/gpu/drm/i915/intel_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
#include "intel_drv.h"
#include "i915_drm.h"
#include "i915_drv.h"
#include "i915_trace.h"
#include "drm_dp_helper.h"

#include "drm_crtc_helper.h"
Expand Down Expand Up @@ -4650,6 +4651,8 @@ static void do_intel_finish_page_flip(struct drm_device *dev,
atomic_dec_and_test(&obj_priv->pending_flip))
DRM_WAKEUP(&dev_priv->pending_flip_queue);
schedule_work(&work->work);

trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
}

void intel_finish_page_flip(struct drm_device *dev, int pipe)
Expand Down Expand Up @@ -4781,6 +4784,8 @@ static int intel_crtc_page_flip(struct drm_crtc *crtc,

mutex_unlock(&dev->struct_mutex);

trace_i915_flip_request(intel_crtc->plane, obj);

return 0;
}

Expand Down

0 comments on commit e5510fa

Please sign in to comment.