Skip to content

Commit

Permalink
drm: add vblank event trace point
Browse files Browse the repository at this point in the history
Emit a trace point for vblank events.  This can be helpful for mapping
drawing activity against the vblank frequency and period.

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 97e0214 commit ac2874b
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 1 deletion.
5 changes: 4 additions & 1 deletion drivers/gpu/drm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,17 @@ drm-y := drm_auth.o drm_buffer.o drm_bufs.o drm_cache.o \
drm_agpsupport.o drm_scatter.o ati_pcigart.o drm_pci.o \
drm_sysfs.o drm_hashtab.o drm_sman.o drm_mm.o \
drm_crtc.o drm_modes.o drm_edid.o \
drm_info.o drm_debugfs.o drm_encoder_slave.o
drm_info.o drm_debugfs.o drm_encoder_slave.o \
drm_trace_points.o

drm-$(CONFIG_COMPAT) += drm_ioc32.o

drm_kms_helper-y := drm_fb_helper.o drm_crtc_helper.o drm_dp_i2c_helper.o

obj-$(CONFIG_DRM_KMS_HELPER) += drm_kms_helper.o

CFLAGS_drm_trace_points.o := -I$(src)

obj-$(CONFIG_DRM) += drm.o
obj-$(CONFIG_DRM_TTM) += ttm/
obj-$(CONFIG_DRM_TDFX) += tdfx/
Expand Down
3 changes: 3 additions & 0 deletions drivers/gpu/drm/drm_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
*/

#include "drmP.h"
#include "drm_trace.h"

#include <linux/interrupt.h> /* For task queue support */
#include <linux/slab.h>
Expand Down Expand Up @@ -754,6 +755,8 @@ void drm_handle_vblank_events(struct drm_device *dev, int crtc)
}

spin_unlock_irqrestore(&dev->event_lock, flags);

trace_drm_vblank_event(crtc, seq);
}

/**
Expand Down
37 changes: 37 additions & 0 deletions drivers/gpu/drm/drm_trace.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#if !defined(_DRM_TRACE_H_) || defined(TRACE_HEADER_MULTI_READ)
#define _DRM_TRACE_H_

#include <linux/stringify.h>
#include <linux/types.h>
#include <linux/tracepoint.h>

#undef TRACE_SYSTEM
#define TRACE_SYSTEM drm
#define TRACE_SYSTEM_STRING __stringify(TRACE_SYSTEM)
#define TRACE_INCLUDE_FILE drm_trace

TRACE_EVENT(drm_vblank_event,

TP_PROTO(int crtc, unsigned int seq),

TP_ARGS(crtc, seq),

TP_STRUCT__entry(
__field(int, crtc)
__field(unsigned int, seq)
),

TP_fast_assign(
__entry->crtc = crtc;
__entry->seq = seq;
),

TP_printk("crtc=%d, seq=%d", __entry->crtc, __entry->seq)
);

#endif /* _DRM_TRACE_H_ */

/* This part must be outside protection */
#undef TRACE_INCLUDE_PATH
#define TRACE_INCLUDE_PATH .
#include <trace/define_trace.h>
4 changes: 4 additions & 0 deletions drivers/gpu/drm/drm_trace_points.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#include "drmP.h"

#define CREATE_TRACE_POINTS
#include "drm_trace.h"

0 comments on commit ac2874b

Please sign in to comment.