OSDN Git Service

Fix gcc -Wextra warnings
[android-x86/external-libdrm.git] / tests / vbltest / vbltest.c
1 /*
2  * DRM based mode setting 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>
7  *
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:
14  *
15  * The above copyright notice and this permission notice shall be included in
16  * all copies or substantial portions of the Software.
17  *
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
24  * IN THE SOFTWARE.
25  */
26
27 /*
28  * This fairly simple test program dumps output in a similar format to the
29  * "xrandr" tool everyone knows & loves.  It's necessarily slightly different
30  * since the kernel separates outputs into encoder and connector structures,
31  * each with their own unique ID.  The program also allows test testing of the
32  * memory management and mode setting APIs by allowing the user to specify a
33  * connector and mode to use for mode setting.  If all works as expected, a
34  * blue background should be painted on the monitor attached to the specified
35  * connector after the selected mode is set.
36  *
37  * TODO: use cairo to write the mode info on the selected output once
38  *       the mode has been programmed, along with possible test patterns.
39  */
40 #ifdef HAVE_CONFIG_H
41 #include "config.h"
42 #endif
43
44 #include <assert.h>
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <stdint.h>
48 #include <unistd.h>
49 #include <string.h>
50 #include <errno.h>
51 #include <sys/poll.h>
52 #include <sys/time.h>
53
54 #include "xf86drm.h"
55 #include "xf86drmMode.h"
56
57 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
58
59 extern char *optarg;
60 extern int optind, opterr, optopt;
61 static char optstr[] = "s";
62
63 int secondary = 0;
64
65 struct vbl_info {
66         unsigned int vbl_count;
67         struct timeval start;
68 };
69
70 static void vblank_handler(int fd, unsigned int frame, unsigned int sec,
71                            unsigned int usec, void *data)
72 {
73         drmVBlank vbl;
74         struct timeval end;
75         struct vbl_info *info = data;
76         double t;
77
78         vbl.request.type = DRM_VBLANK_RELATIVE | DRM_VBLANK_EVENT;
79         if (secondary)
80                 vbl.request.type |= DRM_VBLANK_SECONDARY;
81         vbl.request.sequence = 1;
82         vbl.request.signal = (unsigned long)data;
83
84         drmWaitVBlank(fd, &vbl);
85
86         info->vbl_count++;
87
88         if (info->vbl_count == 60) {
89                 gettimeofday(&end, NULL);
90                 t = end.tv_sec + end.tv_usec * 1e-6 -
91                         (info->start.tv_sec + info->start.tv_usec * 1e-6);
92                 fprintf(stderr, "freq: %.02fHz\n", info->vbl_count / t);
93                 info->vbl_count = 0;
94                 info->start = end;
95         }
96 }
97
98 static void usage(char *name)
99 {
100         fprintf(stderr, "usage: %s [-s]\n", name);
101         fprintf(stderr, "\t-s\tuse secondary pipe\n");
102         exit(0);
103 }
104
105 int main(int argc, char **argv)
106 {
107         unsigned i;
108         int c, fd, ret;
109         char *modules[] = { "i915", "radeon", "nouveau", "vmwgfx", "exynos", "omapdrm", "tilcdc", "msm", "tegra" };
110         drmVBlank vbl;
111         drmEventContext evctx;
112         struct vbl_info handler_info;
113
114         opterr = 0;
115         while ((c = getopt(argc, argv, optstr)) != -1) {
116                 switch (c) {
117                 case 's':
118                         secondary = 1;
119                         break;
120                 default:
121                         usage(argv[0]);
122                         break;
123                 }
124         }
125
126         for (i = 0; i < ARRAY_SIZE(modules); i++) {
127                 printf("trying to load module %s...", modules[i]);
128                 fd = drmOpen(modules[i], NULL);
129                 if (fd < 0) {
130                         printf("failed.\n");
131                 } else {
132                         printf("success.\n");
133                         break;
134                 }
135         }
136
137         if (i == ARRAY_SIZE(modules)) {
138                 fprintf(stderr, "failed to load any modules, aborting.\n");
139                 return -1;
140         }
141
142         /* Get current count first */
143         vbl.request.type = DRM_VBLANK_RELATIVE;
144         if (secondary)
145                 vbl.request.type |= DRM_VBLANK_SECONDARY;
146         vbl.request.sequence = 0;
147         ret = drmWaitVBlank(fd, &vbl);
148         if (ret != 0) {
149                 printf("drmWaitVBlank (relative) failed ret: %i\n", ret);
150                 return -1;
151         }
152
153         printf("starting count: %d\n", vbl.request.sequence);
154
155         handler_info.vbl_count = 0;
156         gettimeofday(&handler_info.start, NULL);
157
158         /* Queue an event for frame + 1 */
159         vbl.request.type = DRM_VBLANK_RELATIVE | DRM_VBLANK_EVENT;
160         if (secondary)
161                 vbl.request.type |= DRM_VBLANK_SECONDARY;
162         vbl.request.sequence = 1;
163         vbl.request.signal = (unsigned long)&handler_info;
164         ret = drmWaitVBlank(fd, &vbl);
165         if (ret != 0) {
166                 printf("drmWaitVBlank (relative, event) failed ret: %i\n", ret);
167                 return -1;
168         }
169
170         /* Set up our event handler */
171         memset(&evctx, 0, sizeof evctx);
172         evctx.version = DRM_EVENT_CONTEXT_VERSION;
173         evctx.vblank_handler = vblank_handler;
174         evctx.page_flip_handler = NULL;
175
176         /* Poll for events */
177         while (1) {
178                 struct timeval timeout = { .tv_sec = 3, .tv_usec = 0 };
179                 fd_set fds;
180                 int ret;
181
182                 FD_ZERO(&fds);
183                 FD_SET(0, &fds);
184                 FD_SET(fd, &fds);
185                 ret = select(fd + 1, &fds, NULL, NULL, &timeout);
186
187                 if (ret <= 0) {
188                         fprintf(stderr, "select timed out or error (ret %d)\n",
189                                 ret);
190                         continue;
191                 } else if (FD_ISSET(0, &fds)) {
192                         break;
193                 }
194
195                 ret = drmHandleEvent(fd, &evctx);
196                 if (ret != 0) {
197                         printf("drmHandleEvent failed: %i\n", ret);
198                         return -1;
199                 }
200         }
201
202         return 0;
203 }