1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
|
/*
* Copyright 2012 Intel Corporation
* Jesse Barnes <jesse.barnes@intel.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#include "config.h"
#include <assert.h>
#include <cairo.h>
#include <errno.h>
#include <math.h>
#include <stdint.h>
#include <unistd.h>
#include <sys/poll.h>
#include <sys/time.h>
#include <sys/mman.h>
#include <sys/ioctl.h>
#include "i915_drm.h"
#include "drmtest.h"
#include "testdisplay.h"
#include "intel_bufmgr.h"
#include "intel_batchbuffer.h"
#include "intel_gpu_tools.h"
#define TEST_DPMS (1 << 0)
#define TEST_WITH_DUMMY_LOAD (1 << 1)
drmModeRes *resources;
int drm_fd;
static drm_intel_bufmgr *bufmgr;
struct intel_batchbuffer *batch;
uint32_t devid;
int test_time = 3;
uint32_t *fb_ptr;
struct type_name {
int type;
const char *name;
};
struct test_output {
uint32_t id;
int mode_valid;
drmModeModeInfo mode;
drmModeEncoder *encoder;
drmModeConnector *connector;
int crtc;
int flags;
int count;
unsigned int current_fb_id;
unsigned int fb_ids[2];
struct kmstest_fb fb_info[2];
struct timeval last_flip_ts;
};
static void emit_dummy_load(struct test_output *o)
{
int i;
drm_intel_bo *dummy_bo, *target_bo, *tmp_bo;
struct kmstest_fb *fb_info = &o->fb_info[o->current_fb_id];
unsigned pitch = fb_info->stride;
dummy_bo = drm_intel_bo_alloc(bufmgr, "dummy_bo", fb_info->size, 4096);
assert(dummy_bo);
target_bo = gem_handle_to_libdrm_bo(bufmgr, drm_fd, "imported", fb_info->gem_handle);
assert(target_bo);
for (i = 0; i < 5000; i++) {
BEGIN_BATCH(8);
OUT_BATCH(XY_SRC_COPY_BLT_CMD |
XY_SRC_COPY_BLT_WRITE_ALPHA |
XY_SRC_COPY_BLT_WRITE_RGB);
OUT_BATCH((3 << 24) | /* 32 bits */
(0xcc << 16) | /* copy ROP */
pitch);
OUT_BATCH(0 << 16 | 0);
OUT_BATCH((o->mode.vdisplay) << 16 | (o->mode.hdisplay));
OUT_RELOC_FENCED(dummy_bo, I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER, 0);
OUT_BATCH(0 << 16 | 0);
OUT_BATCH(pitch);
OUT_RELOC_FENCED(target_bo, I915_GEM_DOMAIN_RENDER, 0, 0);
ADVANCE_BATCH();
if (IS_GEN6(devid) || IS_GEN7(devid)) {
BEGIN_BATCH(3);
OUT_BATCH(XY_SETUP_CLIP_BLT_CMD);
OUT_BATCH(0);
OUT_BATCH(0);
ADVANCE_BATCH();
}
tmp_bo = dummy_bo;
dummy_bo = target_bo;
target_bo = tmp_bo;
}
intel_batchbuffer_flush(batch);
drm_intel_bo_unreference(dummy_bo);
drm_intel_bo_unreference(target_bo);
}
static int set_dpms(struct test_output *o, int mode)
{
int i, dpms = 0;
for (i = 0; i < o->connector->count_props; i++) {
struct drm_mode_get_property prop;
prop.prop_id = o->connector->props[i];
prop.count_values = 0;
prop.count_enum_blobs = 0;
if (drmIoctl(drm_fd, DRM_IOCTL_MODE_GETPROPERTY, &prop))
continue;
if (strcmp(prop.name, "DPMS"))
continue;
dpms = prop.prop_id;
break;
}
if (!dpms) {
fprintf(stderr, "DPMS property not found on %d\n", o->id);
errno = ENOENT;
return -1;
}
return drmModeConnectorSetProperty(drm_fd, o->id, dpms, mode);
}
static void page_flip_handler(int fd, unsigned int frame, unsigned int sec,
unsigned int usec, void *data)
{
struct test_output *o = data;
unsigned int new_fb_id;
struct timeval now, diff, pageflip_ts;
pageflip_ts.tv_sec = sec;
pageflip_ts.tv_usec = usec;
gettimeofday(&now, NULL);
timersub(&pageflip_ts, &now, &diff);
if (diff.tv_sec > 0 || diff.tv_usec > 2000) {
fprintf(stderr, "pageflip timestamp delayed for too long: %us, %uusec\n",
(unsigned) diff.tv_sec, (unsigned) diff.tv_usec);
exit(5);
}
if (!timercmp(&o->last_flip_ts, &now, <)) {
fprintf(stderr, "pageflip ts before the pageflip was issued!\n");
exit(6);
}
o->count++;
o->current_fb_id = !o->current_fb_id;
new_fb_id = o->fb_ids[o->current_fb_id];
if (o->flags & TEST_WITH_DUMMY_LOAD)
emit_dummy_load(o);
printf("."); fflush(stdout);
if (o->flags & TEST_DPMS)
do_or_die(set_dpms(o, DRM_MODE_DPMS_ON));
do_or_die(drmModePageFlip(drm_fd, o->crtc, new_fb_id,
DRM_MODE_PAGE_FLIP_EVENT, o));
if (o->flags & TEST_DPMS)
do_or_die(set_dpms(o, DRM_MODE_DPMS_OFF));
o->last_flip_ts = now;
}
static void connector_find_preferred_mode(struct test_output *o, int crtc_id)
{
drmModeConnector *connector;
drmModeEncoder *encoder = NULL;
int i, j;
/* First, find the connector & mode */
o->mode_valid = 0;
o->crtc = 0;
connector = drmModeGetConnector(drm_fd, o->id);
assert(connector);
if (connector->connection != DRM_MODE_CONNECTED) {
drmModeFreeConnector(connector);
return;
}
if (!connector->count_modes) {
fprintf(stderr, "connector %d has no modes\n", o->id);
drmModeFreeConnector(connector);
return;
}
if (connector->connector_id != o->id) {
fprintf(stderr, "connector id doesn't match (%d != %d)\n",
connector->connector_id, o->id);
drmModeFreeConnector(connector);
return;
}
for (j = 0; j < connector->count_modes; j++) {
o->mode = connector->modes[j];
if (o->mode.type & DRM_MODE_TYPE_PREFERRED) {
o->mode_valid = 1;
break;
}
}
if (!o->mode_valid) {
if (connector->count_modes > 0) {
/* use the first mode as test mode */
o->mode = connector->modes[0];
o->mode_valid = 1;
}
else {
fprintf(stderr, "failed to find any modes on connector %d\n",
o->id);
return;
}
}
/* Now get the encoder */
for (i = 0; i < connector->count_encoders; i++) {
encoder = drmModeGetEncoder(drm_fd, connector->encoders[i]);
if (!encoder) {
fprintf(stderr, "could not get encoder %i: %s\n",
resources->encoders[i], strerror(errno));
drmModeFreeEncoder(encoder);
continue;
}
break;
}
o->encoder = encoder;
if (i == resources->count_encoders) {
fprintf(stderr, "failed to find encoder\n");
o->mode_valid = 0;
return;
}
/* Find first CRTC not in use */
for (i = 0; i < resources->count_crtcs; i++) {
if (resources->crtcs[i] != crtc_id)
continue;
if (resources->crtcs[i] &&
(o->encoder->possible_crtcs & (1<<i))) {
o->crtc = resources->crtcs[i];
break;
}
}
if (!o->crtc) {
fprintf(stderr, "could not find requested crtc %d\n", crtc_id);
o->mode_valid = 0;
return;
}
o->connector = connector;
}
static void
paint_flip_mode(cairo_t *cr, int width, int height, void *priv)
{
bool odd_frame = (bool) priv;
if (odd_frame)
cairo_rectangle(cr, width/4, height/2, width/4, height/8);
else
cairo_rectangle(cr, width/2, height/2, width/4, height/8);
cairo_set_source_rgb(cr, 1, 1, 1);
cairo_fill(cr);
}
static int
fb_is_bound(struct test_output *o, int fb)
{
struct drm_mode_crtc mode;
mode.crtc_id = o->crtc;
if (drmIoctl(drm_fd, DRM_IOCTL_MODE_GETCRTC, &mode))
return 0;
return mode.mode_valid && mode.fb_id == fb;
}
static void flip_mode(struct test_output *o, int crtc, int duration)
{
int ret;
int bpp = 32, depth = 24;
drmEventContext evctx;
int width, height;
struct timeval end;
connector_find_preferred_mode(o, crtc);
if (!o->mode_valid)
return;
fprintf(stdout, "Beginning page flipping on crtc %d, connector %d\n",
crtc, o->id);
width = o->mode.hdisplay;
height = o->mode.vdisplay;
o->fb_ids[0] = kmstest_create_fb(drm_fd, width, height, bpp, depth,
false, &o->fb_info[0],
paint_flip_mode, (void *)false);
o->fb_ids[1] = kmstest_create_fb(drm_fd, width, height, bpp, depth,
false, &o->fb_info[1],
paint_flip_mode, (void *)true);
if (!o->fb_ids[0] || !o->fb_ids[1]) {
fprintf(stderr, "failed to create fbs\n");
exit(3);
}
kmstest_dump_mode(&o->mode);
if (drmModeSetCrtc(drm_fd, o->crtc, o->fb_ids[0], 0, 0,
&o->id, 1, &o->mode)) {
fprintf(stderr, "failed to set mode (%dx%d@%dHz): %s\n",
width, height, o->mode.vrefresh,
strerror(errno));
exit(3);
}
assert(fb_is_bound(o, o->fb_ids[0]));
if (drmModePageFlip(drm_fd, o->crtc, o->fb_ids[1],
DRM_MODE_PAGE_FLIP_EVENT, o)) {
fprintf(stderr, "failed to page flip: %s\n", strerror(errno));
exit(4);
}
o->current_fb_id = 1;
o->count = 1; /* for the uncounted tail */
memset(&evctx, 0, sizeof evctx);
evctx.version = DRM_EVENT_CONTEXT_VERSION;
evctx.vblank_handler = NULL;
evctx.page_flip_handler = page_flip_handler;
gettimeofday(&end, NULL);
gettimeofday(&o->last_flip_ts, NULL);
end.tv_sec += duration;
while (1) {
struct timeval now, timeout = { .tv_sec = 3, .tv_usec = 0 };
fd_set fds;
FD_ZERO(&fds);
FD_SET(0, &fds);
FD_SET(drm_fd, &fds);
ret = select(drm_fd + 1, &fds, NULL, NULL, &timeout);
if (ret <= 0) {
fprintf(stderr, "select timed out or error (ret %d)\n",
ret);
exit(1);
} else if (FD_ISSET(0, &fds)) {
fprintf(stderr, "no fds active, breaking\n");
exit(2);
}
gettimeofday(&now, NULL);
if (now.tv_sec > end.tv_sec ||
(now.tv_sec == end.tv_sec && now.tv_usec >= end.tv_usec)) {
break;
}
drmHandleEvent(drm_fd, &evctx);
}
/* and drain the event queue */
evctx.page_flip_handler = NULL;
drmHandleEvent(drm_fd, &evctx);
/* Verify we drop no frames */
if (o->flags == 0) {
struct timeval now;
long us;
int expected;
gettimeofday(&now, NULL);
us = duration * 1000 * 1000;
us += (now.tv_sec - end.tv_sec) * 1000 * 1000;
us += now.tv_usec - end.tv_usec;
expected = us * o->mode.vrefresh / (1000 * 1000);
if (o->count < expected) {
fprintf(stderr, "dropped frames, expected %d, counted %d\n",
expected, o->count);
exit(3);
}
}
fprintf(stdout, "\npage flipping on crtc %d, connector %d: PASSED\n",
crtc, o->id);
drmModeFreeEncoder(o->encoder);
drmModeFreeConnector(o->connector);
}
static int run_test(int duration, int flags)
{
struct test_output o;
int c, i;
resources = drmModeGetResources(drm_fd);
if (!resources) {
fprintf(stderr, "drmModeGetResources failed: %s\n",
strerror(errno));
exit(5);
}
/* Find any connected displays */
for (c = 0; c < resources->count_connectors; c++) {
memset(&o, 0, sizeof(o));
o.id = resources->connectors[c];
o.flags = flags;
for (i = 0; i < resources->count_crtcs; i++)
flip_mode(&o, resources->crtcs[i], duration);
}
drmModeFreeResources(resources);
return 1;
}
int main(int argc, char **argv)
{
struct {
int duration;
int flags;
const char *name;
} tests[] = {
{ 5, 0 , "plain flip" },
{ 30, TEST_DPMS, "flip vs dpms" },
{ 30, TEST_DPMS | TEST_WITH_DUMMY_LOAD, "delayed flip vs. dpms" },
};
int i;
drm_fd = drm_open_any();
bufmgr = drm_intel_bufmgr_gem_init(drm_fd, 4096);
devid = intel_get_drm_devid(drm_fd);
batch = intel_batchbuffer_alloc(bufmgr, devid);
for (i = 0; i < sizeof(tests) / sizeof (tests[0]); i++) {
printf("running testcase: %s\n", tests[i].name);
run_test(tests[i].duration, tests[i].flags);
}
close(drm_fd);
return 0;
}
|