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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
|
/*
* Copyright © 2013 Intel Corporation
*
* 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 (including the next
* paragraph) 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.
*
*/
/**
* TEST: kms pipe crc basic
* Category: Display
* Description: Tests behaviour of CRC
*/
#include "igt.h"
#include "igt_sysfs.h"
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
static bool extended;
static enum pipe active_pipes[IGT_MAX_PIPES];
static uint32_t last_pipe;
typedef struct {
int drm_fd;
int debugfs;
igt_display_t display;
struct igt_fb fb;
} data_t;
static struct {
double r, g, b;
igt_crc_t crc;
} colors[2] = {
{ .r = 0.0, .g = 1.0, .b = 0.0 },
{ .r = 0.0, .g = 1.0, .b = 1.0 },
};
static bool simulation_constraint(enum pipe pipe)
{
if (igt_run_in_simulation() && !extended &&
pipe != active_pipes[0] &&
pipe != active_pipes[last_pipe])
return true;
return false;
}
/**
* SUBTEST: bad-source
* Description: Tests error handling when the bad source is set.
* Driver requirement: i915, xe
* Functionality: crc
* Mega feature: General Display Features
* Test category: functionality test
*/
static void test_bad_source(data_t *data)
{
errno = 0;
if (igt_sysfs_set(data->debugfs, "crtc-0/crc/control", "foo")) {
igt_assert(openat(data->debugfs, "crtc-0/crc/data", O_WRONLY) == -1);
igt_skip_on(errno == EIO);
}
igt_assert_eq(errno, EINVAL);
}
#define N_CRCS 3
enum {
TEST_BASIC = 0,
TEST_SEQUENCE = 1 << 0,
TEST_NONBLOCK = 1 << 1,
TEST_SUSPEND = 1 << 2,
TEST_HANG = 1 << 3,
};
/**
* SUBTEST: read-crc
* Description: Test for pipe CRC reads
* Driver requirement: i915, xe
* Test category: functionality test
* Functionality: crc
* Mega feature: General Display Features
*
* SUBTEST: read-crc-frame-sequence
* Description: Tests the pipe CRC read and ensure frame sequence
* Driver requirement: i915, xe
* Test category: functionality test
* Functionality: crc
* Mega feature: General Display Features
*
* SUBTEST: nonblocking-crc
* Description: Test for O_NONBLOCK CRC reads
* Driver requirement: i915, xe
* Test category: functionality test
* Functionality: crc
* Mega feature: General Display Features
*
* SUBTEST: nonblocking-crc-frame-sequence
* Description: Test for O_NONBLOCK CRC reads and ensure frame sequence
* Driver requirement: i915, xe
* Test category: functionality test
* Functionality: crc
* Mega feature: General Display Features
*
* SUBTEST: suspend-read-crc
* Description: Suspend test for pipe CRC reads
* Driver requirement: i915, xe
* Test category: functionality test
* Functionality: crc, suspend
* Mega feature: General Display Features
*
* SUBTEST: hang-read-crc
* Description: Hang test for pipe CRC read
* Driver requirement: i915, xe
* Test category: functionality test
* Functionality: crc, hang
* Mega feature: General Display Features
*/
static void test_read_crc(data_t *data, enum pipe pipe,
igt_output_t *output, unsigned flags)
{
igt_display_t *display = &data->display;
igt_plane_t *primary;
drmModeModeInfo *mode;
igt_crc_t *crcs = NULL;
int c, j;
igt_display_reset(display);
igt_output_set_pipe(output, pipe);
mode = igt_output_get_mode(output);
primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
for (c = 0; c < ARRAY_SIZE(colors); c++) {
char *crc_str;
int n_crcs;
igt_debug("Clearing the fb with color (%.02lf,%.02lf,%.02lf)\n",
colors[c].r, colors[c].g, colors[c].b);
igt_create_color_fb(data->drm_fd,
mode->hdisplay, mode->vdisplay,
DRM_FORMAT_XRGB8888,
DRM_FORMAT_MOD_LINEAR,
colors[c].r,
colors[c].g,
colors[c].b,
&data->fb);
igt_plane_set_fb(primary, &data->fb);
igt_display_commit(display);
/* wait for N_CRCS vblanks and the corresponding N_CRCS CRCs */
if (flags & TEST_NONBLOCK) {
igt_pipe_crc_t *pipe_crc;
pipe_crc = igt_pipe_crc_new_nonblock(data->drm_fd, pipe,
IGT_PIPE_CRC_SOURCE_AUTO);
igt_wait_for_vblank(data->drm_fd, display->pipes[pipe].crtc_offset);
igt_pipe_crc_start(pipe_crc);
igt_wait_for_vblank_count(data->drm_fd,
display->pipes[pipe].crtc_offset, N_CRCS);
n_crcs = igt_pipe_crc_get_crcs(pipe_crc, N_CRCS+1, &crcs);
igt_pipe_crc_stop(pipe_crc);
igt_pipe_crc_free(pipe_crc);
/* allow a one frame difference */
igt_assert_lte(N_CRCS, n_crcs);
} else {
igt_pipe_crc_t *pipe_crc;
pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe,
IGT_PIPE_CRC_SOURCE_AUTO);
igt_pipe_crc_start(pipe_crc);
n_crcs = igt_pipe_crc_get_crcs(pipe_crc, N_CRCS, &crcs);
igt_pipe_crc_stop(pipe_crc);
igt_pipe_crc_free(pipe_crc);
igt_assert_eq(n_crcs, N_CRCS);
}
/*
* save the CRC in colors so it can be compared to the CRC of
* other fbs
*/
colors[c].crc = crcs[0];
crc_str = igt_crc_to_string(&crcs[0]);
igt_debug("CRC for this fb: %s\n", crc_str);
free(crc_str);
/* and ensure that they'are all equal, we haven't changed the fb */
for (j = 0; j < (n_crcs - 1); j++)
igt_assert_crc_equal(&crcs[j], &crcs[j + 1]);
if (flags & TEST_SEQUENCE)
for (j = 0; j < (n_crcs - 1); j++)
igt_assert_eq(crcs[j].frame + 1, crcs[j + 1].frame);
free(crcs);
igt_remove_fb(data->drm_fd, &data->fb);
}
/* Clean-up */
igt_output_set_pipe(output, PIPE_NONE);
igt_plane_set_fb(primary, NULL);
igt_display_commit(display);
}
/**
* SUBTEST: compare-crc-sanitycheck-%s
* Description: Basic sanity check for CRC mismatches with %arg[1]
* Driver requirement: i915, xe
* Test category: functionality test
* Functionality: crc, pixel_format
* Mega feature: General Display Features
*
* arg[1]:
*
* @xr24: XR24 format
* @nv12: NV12 format
*/
/*
* CRC-sanity test, to make sure there would be no CRC mismatches
*
* - Create two framebuffers (FB0 & FB1).
* - Flip FB0 with the primary plane & collect the CRC as ref CRC.
* - Flip FB1 with the primary plane, collect the CRC & compare with
* the ref CRC.
*
* No CRC mismatch should happen
*/
static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output,
uint32_t plane_format)
{
igt_display_t *display = &data->display;
igt_plane_t *primary;
drmModeModeInfo *mode;
igt_crc_t ref_crc, crc;
igt_pipe_crc_t *pipe_crc = NULL;
struct igt_fb fb0, fb1;
igt_display_reset(display);
igt_output_set_pipe(output, pipe);
mode = igt_output_get_mode(output);
primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
igt_skip_on(!igt_plane_has_format_mod(primary, plane_format, DRM_FORMAT_MOD_LINEAR));
igt_create_color_fb(data->drm_fd,
mode->hdisplay, mode->vdisplay,
DRM_FORMAT_XRGB8888,
DRM_FORMAT_MOD_LINEAR,
1.0, 1.0, 1.0,
&fb0);
igt_create_color_fb(data->drm_fd,
mode->hdisplay, mode->vdisplay, plane_format,
DRM_FORMAT_MOD_LINEAR,
1.0, 1.0, 1.0,
&fb1);
/* Flip FB0 with the primary plane & collect the CRC as ref CRC. */
igt_plane_set_fb(primary, &fb0);
igt_display_commit(display);
pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe,
IGT_PIPE_CRC_SOURCE_AUTO);
igt_pipe_crc_collect_crc(pipe_crc, &ref_crc);
/* Flip FB1 with the primary plane & compare the CRC with ref CRC. */
igt_plane_set_fb(primary, &fb1);
igt_display_commit(display);
igt_pipe_crc_collect_crc(pipe_crc, &crc);
igt_assert_crc_equal(&crc, &ref_crc);
/* Clean-up */
igt_pipe_crc_free(pipe_crc);
igt_plane_set_fb(primary, NULL);
igt_output_set_pipe(output, PIPE_NONE);
igt_display_commit(display);
igt_remove_fb(data->drm_fd, &fb0);
igt_remove_fb(data->drm_fd, &fb1);
}
/**
* SUBTEST: disable-crc-after-crtc
* Description: Check that disabling CRCs on a CRTC after having disabled the
* CRTC does not cause issues.
* Driver requirement: i915, xe
* Functionality: crc
* Mega feature: General Display Features
* Test category: functionality test
*/
static void test_disable_crc_after_crtc(data_t *data, enum pipe pipe,
igt_output_t *output)
{
igt_display_t *display = &data->display;
igt_pipe_crc_t *pipe_crc;
drmModeModeInfo *mode;
igt_crc_t crc[2];
igt_plane_t *primary;
pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe,
IGT_PIPE_CRC_SOURCE_AUTO);
igt_display_reset(display);
igt_output_set_pipe(output, pipe);
mode = igt_output_get_mode(output);
igt_create_color_fb(data->drm_fd,
mode->hdisplay, mode->vdisplay,
DRM_FORMAT_XRGB8888,
DRM_FORMAT_MOD_LINEAR,
0.0, 1.0, 0.0, &data->fb);
primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
igt_plane_set_fb(primary, &data->fb);
igt_display_commit(display);
igt_pipe_crc_start(pipe_crc);
igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &crc[0]);
kmstest_set_connector_dpms(data->drm_fd, output->config.connector,
DRM_MODE_DPMS_OFF);
igt_pipe_crc_stop(pipe_crc);
kmstest_set_connector_dpms(data->drm_fd, output->config.connector,
DRM_MODE_DPMS_ON);
igt_pipe_crc_collect_crc(pipe_crc, &crc[1]);
igt_assert_crc_equal(&crc[0], &crc[1]);
/* Clean-up */
igt_pipe_crc_free(pipe_crc);
igt_plane_set_fb(primary, NULL);
igt_output_set_pipe(output, PIPE_NONE);
igt_display_commit(display);
igt_remove_fb(data->drm_fd, &data->fb);
}
static bool pipe_output_combo_valid(igt_display_t *display,
enum pipe pipe, igt_output_t *output)
{
bool ret = true;
igt_display_reset(display);
igt_output_set_pipe(output, pipe);
if (!i915_pipe_output_combo_valid(display))
ret = false;
igt_output_set_pipe(output, PIPE_NONE);
return ret;
}
data_t data = {0, };
static int opt_handler(int opt, int opt_index, void *_data)
{
switch (opt) {
case 'e':
extended = true;
break;
default:
return IGT_OPT_HANDLER_ERROR;
}
return IGT_OPT_HANDLER_SUCCESS;
}
const char *help_str =
" -e \tExtended tests.\n";
igt_main_args("e", NULL, help_str, opt_handler, NULL)
{
enum pipe pipe;
igt_output_t *output;
struct {
const char *name;
unsigned flags;
const char *desc;
} tests[] = {
{ "read-crc", TEST_BASIC,
"Test for pipe CRC reads." },
{ "read-crc-frame-sequence", TEST_SEQUENCE,
"Tests the pipe CRC read and ensure frame sequence." },
{ "nonblocking-crc", TEST_NONBLOCK,
"Test for O_NONBLOCK CRC reads." },
{ "nonblocking-crc-frame-sequence", TEST_SEQUENCE | TEST_NONBLOCK,
"Test for O_NONBLOCK CRC reads and ensure frame sequence." },
{ "suspend-read-crc", TEST_SUSPEND,
"Suspend test for pipe CRC reads." },
{ "hang-read-crc", TEST_HANG,
"Hang test for pipe CRC read." },
};
int i;
last_pipe = 0;
igt_fixture {
data.drm_fd = drm_open_driver_master(DRIVER_ANY);
kmstest_set_vt_graphics_mode();
igt_require_pipe_crc(data.drm_fd);
igt_display_require(&data.display, data.drm_fd);
igt_display_require_output(&data.display);
igt_require_pipe_crc(data.drm_fd);
data.debugfs = igt_debugfs_dir(data.drm_fd);
/* Get active pipes. */
for_each_pipe(&data.display, pipe)
active_pipes[last_pipe++] = pipe;
last_pipe--;
}
igt_describe("Tests error handling when the bad source is set.");
igt_subtest("bad-source")
test_bad_source(&data);
for (i = 0; i < ARRAY_SIZE(tests); i++) {
igt_describe(tests[i].desc);
igt_subtest_with_dynamic(tests[i].name) {
for_each_pipe_with_single_output(&data.display, pipe, output) {
if (simulation_constraint(pipe))
continue;
if(!pipe_output_combo_valid(&data.display, pipe, output))
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
if (tests[i].flags & TEST_SUSPEND) {
test_read_crc(&data, pipe, output, 0);
igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
SUSPEND_TEST_NONE);
test_read_crc(&data, pipe, output, 0);
} else if (tests[i].flags & TEST_HANG) {
igt_hang_t hang = igt_allow_hang(data.drm_fd, 0, 0);
test_read_crc(&data, pipe, output, 0);
igt_force_gpu_reset(data.drm_fd);
test_read_crc(&data, pipe, output, 0);
igt_disallow_hang(data.drm_fd, hang);
} else {
test_read_crc(&data, pipe, output, tests[i].flags);
}
}
}
}
}
igt_describe("Check that disabling CRCs on a CRTC after having disabled the CRTC "
"does not cause issues.");
igt_subtest_with_dynamic("disable-crc-after-crtc") {
for_each_pipe_with_single_output(&data.display, pipe, output) {
if (simulation_constraint(pipe))
continue;
if(!pipe_output_combo_valid(&data.display, pipe, output))
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name)
test_disable_crc_after_crtc(&data, pipe, output);
}
}
igt_describe("Basic sanity check for CRC mismatches with XR24 format");
igt_subtest_with_dynamic("compare-crc-sanitycheck-xr24") {
for_each_pipe_with_single_output(&data.display, pipe, output) {
if (simulation_constraint(pipe))
continue;
if(!pipe_output_combo_valid(&data.display, pipe, output))
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name)
test_compare_crc(&data, pipe, output, DRM_FORMAT_XRGB8888);
}
}
igt_describe("Basic sanity check for CRC mismatches with NV12 format");
igt_subtest_with_dynamic("compare-crc-sanitycheck-nv12") {
for_each_pipe_with_single_output(&data.display, pipe, output) {
if (simulation_constraint(pipe))
continue;
if(!pipe_output_combo_valid(&data.display, pipe, output))
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name)
test_compare_crc(&data, pipe, output, DRM_FORMAT_NV12);
}
}
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
}
}
|