2 * DRM based vblank test program
3 * Copyright 2008 Tungsten Graphics
4 * Jakob Bornecrantz <jakob@tungstengraphics.com>
5 * Copyright 2008 Intel Corporation
6 * Jesse Barnes <jesse.barnes@intel.com>
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
37 #include <sys/select.h>
41 #include "xf86drmMode.h"
43 #include "util/common.h"
47 extern int optind
, opterr
, optopt
;
48 static char optstr
[] = "D:M:s";
53 unsigned int vbl_count
;
57 static void vblank_handler(int fd
, unsigned int frame
, unsigned int sec
,
58 unsigned int usec
, void *data
)
62 struct vbl_info
*info
= data
;
65 vbl
.request
.type
= DRM_VBLANK_RELATIVE
| DRM_VBLANK_EVENT
;
67 vbl
.request
.type
|= DRM_VBLANK_SECONDARY
;
68 vbl
.request
.sequence
= 1;
69 vbl
.request
.signal
= (unsigned long)data
;
71 drmWaitVBlank(fd
, &vbl
);
75 if (info
->vbl_count
== 60) {
76 gettimeofday(&end
, NULL
);
77 t
= end
.tv_sec
+ end
.tv_usec
* 1e-6 -
78 (info
->start
.tv_sec
+ info
->start
.tv_usec
* 1e-6);
79 fprintf(stderr
, "freq: %.02fHz\n", info
->vbl_count
/ t
);
85 static void usage(char *name
)
87 fprintf(stderr
, "usage: %s [-DMs]\n", name
);
88 fprintf(stderr
, "\n");
89 fprintf(stderr
, "options:\n");
90 fprintf(stderr
, " -D DEVICE open the given device\n");
91 fprintf(stderr
, " -M MODULE open the given module\n");
92 fprintf(stderr
, " -s use secondary pipe\n");
96 int main(int argc
, char **argv
)
98 const char *device
= NULL
, *module
= NULL
;
101 drmEventContext evctx
;
102 struct vbl_info handler_info
;
105 while ((c
= getopt(argc
, argv
, optstr
)) != -1) {
122 fd
= util_open(device
, module
);
126 /* Get current count first */
127 vbl
.request
.type
= DRM_VBLANK_RELATIVE
;
129 vbl
.request
.type
|= DRM_VBLANK_SECONDARY
;
130 vbl
.request
.sequence
= 0;
131 ret
= drmWaitVBlank(fd
, &vbl
);
133 printf("drmWaitVBlank (relative) failed ret: %i\n", ret
);
137 printf("starting count: %d\n", vbl
.request
.sequence
);
139 handler_info
.vbl_count
= 0;
140 gettimeofday(&handler_info
.start
, NULL
);
142 /* Queue an event for frame + 1 */
143 vbl
.request
.type
= DRM_VBLANK_RELATIVE
| DRM_VBLANK_EVENT
;
145 vbl
.request
.type
|= DRM_VBLANK_SECONDARY
;
146 vbl
.request
.sequence
= 1;
147 vbl
.request
.signal
= (unsigned long)&handler_info
;
148 ret
= drmWaitVBlank(fd
, &vbl
);
150 printf("drmWaitVBlank (relative, event) failed ret: %i\n", ret
);
154 /* Set up our event handler */
155 memset(&evctx
, 0, sizeof evctx
);
156 evctx
.version
= DRM_EVENT_CONTEXT_VERSION
;
157 evctx
.vblank_handler
= vblank_handler
;
158 evctx
.page_flip_handler
= NULL
;
160 /* Poll for events */
162 struct timeval timeout
= { .tv_sec
= 3, .tv_usec
= 0 };
168 ret
= select(fd
+ 1, &fds
, NULL
, NULL
, &timeout
);
171 fprintf(stderr
, "select timed out or error (ret %d)\n",
174 } else if (FD_ISSET(0, &fds
)) {
178 ret
= drmHandleEvent(fd
, &evctx
);
180 printf("drmHandleEvent failed: %i\n", ret
);