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 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
|
/*
* Copyright © 2013,2014 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 rotation crc
* Category: Display
* Description: Tests different rotations with different planes & formats
* Driver requirement: i915, xe
* Mega feature: General Display Features
*/
#include "igt.h"
#include "igt_vec.h"
#include <math.h>
/**
* SUBTEST: %s-rotation-180
* Description: Rotation test with 180 degree for %arg[1] planes
*
* arg[1]:
*
* @primary: primary
* @sprite: sprite
* @cursor: cursor
*/
/**
* SUBTEST: %s-rotation-%d
* Description: Rotation test with %arg[2] degree for %arg[1] planes of gen9+
*
* arg[1]:
*
* @primary: primary
* @sprite: sprite
*
* arg[2].values: 90, 270
*/
/**
* SUBTEST: bad-pixel-format
* Description: Checking unsupported pixel format for gen9+ with 90 degree of rotation
*
* SUBTEST: bad-tiling
* Description: Checking unsupported tiling for gen9+ with 90 degree of rotation
*
* SUBTEST: exhaust-fences
* Description: This test intends to check for fence leaks exhaustively
*/
/**
* SUBTEST: primary-%s-tiled-reflect-x-%d
* Description: Test for %arg[1] & %arg[2] degree rotation on primary plane
*
* arg[1]:
*
* @4: 4 tiling
* @x: x tiling
* @y: y tiling
* @yf: yf tiling
*
* arg[2].values: 0, 180
*/
/**
* SUBTEST: primary-%s-tiled-reflect-x-%d
* Description: Test for %arg[1] & %arg[2] degree rotation on primary plane
*
* arg[1]:
*
* @y: y tiling
* @yf: yf tiling
*
* arg[2].values: 90, 270
*
* SUBTEST: sprite-rotation-90-pos-100-0
* Description: Rotation test with 90 degree for a plane of gen9+ with given position
*/
/**
* SUBTEST: multiplane-rotation
* Description: Rotation test on both planes by making them fully visible
*
* SUBTEST: multiplane-rotation-cropping-%s
* Description: Rotation test on both planes by cropping left/%arg[1] corner of
* primary plane and right/%arg[1] corner of sprite plane
*
* arg[1]:
*
* @bottom: bottom
* @top: top
*/
#define MAX_FENCES 32
#define MAXMULTIPLANESAMOUNT 2
#define TEST_MAX_WIDTH 640
#define TEST_MAX_HEIGHT 480
#define MAX_TESTED_MODES 8
#define MULTIPLANE_REFERENCE 0
#define MULTIPLANE_ROTATED 1
struct p_struct {
igt_plane_t *plane;
struct igt_fb fb;
};
enum p_pointorigo {
p_top = 1 << 0,
p_bottom = 1 << 1,
p_left = 1 << 2,
p_right = 1 << 3
};
struct p_point{
enum p_pointorigo origo;
float_t x;
float_t y;
};
enum rectangle_type {
rectangle,
square,
portrait,
landscape,
num_rectangle_types /* must be last */
};
/*
* These are those modes which are tested on multiplane test.
* For testing feel interesting case with modifier are 2BPP, 4BPP, NV12 and
* one P0xx format.
*/
const uint32_t multiplaneformatlist[] = { DRM_FORMAT_RGB565,
DRM_FORMAT_XRGB8888,
DRM_FORMAT_NV12,
DRM_FORMAT_P010 };
typedef struct {
igt_rotation_t rotation;
float_t width;
float_t height;
uint64_t modifier;
struct igt_fb fbs[ARRAY_SIZE(multiplaneformatlist)][2];
} planeconfigs_t;
typedef struct {
int gfx_fd;
igt_display_t display;
struct igt_fb fb;
struct igt_fb fb_reference;
struct igt_fb fb_flip;
igt_crc_t ref_crc;
igt_crc_t flip_crc;
igt_pipe_crc_t *pipe_crc;
igt_rotation_t rotation;
int pos_x;
int pos_y;
uint32_t override_fmt;
uint64_t override_modifier;
int devid;
struct p_point planepos[MAXMULTIPLANESAMOUNT];
bool use_native_resolution;
bool extended;
int output_crc_in_use, max_crc_in_use;
struct crc_rect_tag {
int mode;
bool valid;
igt_crc_t ref_crc;
igt_crc_t flip_crc;
} crc_rect[MAX_TESTED_MODES][num_rectangle_types];
igt_fb_t last_on_screen;
} data_t;
typedef struct {
float r;
float g;
float b;
} rgb_color_t;
static void set_color(rgb_color_t *color, float r, float g, float b)
{
color->r = r;
color->g = g;
color->b = b;
}
static void rotate_colors(rgb_color_t *tl, rgb_color_t *tr, rgb_color_t *br,
rgb_color_t *bl, igt_rotation_t rotation)
{
rgb_color_t bl_tmp, br_tmp, tl_tmp, tr_tmp;
if (rotation & IGT_REFLECT_X) {
igt_swap(*tl, *tr);
igt_swap(*bl, *br);
}
if (rotation & IGT_ROTATION_90) {
bl_tmp = *bl;
br_tmp = *br;
tl_tmp = *tl;
tr_tmp = *tr;
*tl = tr_tmp;
*bl = tl_tmp;
*tr = br_tmp;
*br = bl_tmp;
} else if (rotation & IGT_ROTATION_180) {
igt_swap(*tl, *br);
igt_swap(*tr, *bl);
} else if (rotation & IGT_ROTATION_270) {
bl_tmp = *bl;
br_tmp = *br;
tl_tmp = *tl;
tr_tmp = *tr;
*tl = bl_tmp;
*bl = br_tmp;
*tr = tl_tmp;
*br = tr_tmp;
}
}
#define RGB_COLOR(color) \
color.r, color.g, color.b
static void
paint_squares(data_t *data, igt_rotation_t rotation,
struct igt_fb *fb, float o)
{
cairo_t *cr;
unsigned int w = fb->width;
unsigned int h = fb->height;
rgb_color_t tl, tr, bl, br;
igt_assert_f(!(w&1), "rotation image must be even width, now attempted %d\n", w);
igt_assert_f(!(h&1), "rotation image must be even height, now attempted %d\n", h);
cr = igt_get_cairo_ctx(data->gfx_fd, fb);
set_color(&tl, o, 0.0f, 0.0f);
set_color(&tr, 0.0f, o, 0.0f);
set_color(&br, o, o, o);
set_color(&bl, 0.0f, 0.0f, o);
rotate_colors(&tl, &tr, &br, &bl, rotation);
igt_paint_color(cr, 0, 0, w / 2, h / 2, RGB_COLOR(tl));
igt_paint_color(cr, w / 2, 0, w / 2, h / 2, RGB_COLOR(tr));
igt_paint_color(cr, 0, h / 2, w / 2, h / 2, RGB_COLOR(bl));
igt_paint_color(cr, w / 2, h / 2, w / 2, h / 2, RGB_COLOR(br));
igt_put_cairo_ctx(cr);
}
static void remove_fbs(data_t *data)
{
igt_remove_fb(data->gfx_fd, &data->fb);
igt_remove_fb(data->gfx_fd, &data->fb_reference);
}
static void cleanup_crtc(data_t *data)
{
igt_display_t *display = &data->display;
igt_pipe_crc_free(data->pipe_crc);
data->pipe_crc = NULL;
remove_fbs(data);
igt_display_reset(display);
}
static void prepare_crtc(data_t *data, igt_output_t *output, enum pipe pipe,
igt_plane_t *plane, bool start_crc)
{
igt_display_t *display = &data->display;
cleanup_crtc(data);
igt_output_set_pipe(output, pipe);
igt_require(intel_pipe_output_combo_valid(display));
igt_plane_set_rotation(plane, IGT_ROTATION_0);
/* create the pipe_crc object for this pipe */
igt_pipe_crc_free(data->pipe_crc);
/* defer crtc cleanup + crtc active for later on amd - not valid
* to enable CRTC without a plane active
*/
if (!is_amdgpu_device(data->gfx_fd))
igt_display_commit2(display, COMMIT_ATOMIC);
data->pipe_crc = igt_pipe_crc_new(data->gfx_fd, pipe,
IGT_PIPE_CRC_SOURCE_AUTO);
if (!is_amdgpu_device(data->gfx_fd) && start_crc)
igt_pipe_crc_start(data->pipe_crc);
}
#define TEST_WIDTH(km) \
min_t((km)->hdisplay, (km)->hdisplay, TEST_MAX_WIDTH)
#define TEST_HEIGHT(km) \
min_t((km)->vdisplay, (km)->vdisplay, TEST_MAX_HEIGHT)
static void prepare_fbs(data_t *data, igt_output_t *output,
igt_plane_t *plane, enum rectangle_type rect, uint32_t format)
{
drmModeModeInfo *mode;
igt_display_t *display = &data->display;
unsigned int w, h, ref_w, ref_h, min_w, min_h;
uint64_t modifier = data->override_modifier ?: DRM_FORMAT_MOD_LINEAR;
uint32_t pixel_format = data->override_fmt ?: DRM_FORMAT_XRGB8888;
const float flip_opacity = 0.75;
remove_fbs(data);
igt_plane_set_rotation(plane, IGT_ROTATION_0);
mode = igt_output_get_mode(output);
if (plane->type != DRM_PLANE_TYPE_CURSOR) {
if (data->use_native_resolution) {
w = mode->hdisplay;
h = mode->vdisplay;
} else {
w = TEST_WIDTH(mode);
h = TEST_HEIGHT(mode);
}
min_w = 256;
min_h = 256;
} else {
pixel_format = data->override_fmt ?: DRM_FORMAT_ARGB8888;
w = h = 256;
min_w = min_h = 64;
}
switch (rect) {
case rectangle:
break;
case square:
w = h = min(h, w);
break;
case portrait:
w = min_w;
break;
case landscape:
h = min_h;
break;
case num_rectangle_types:
igt_assert(0);
}
ref_w = w;
ref_h = h;
/*
* For 90/270, we will use create smaller fb so that the rotated
* frame can fit in
*/
if (igt_rotation_90_or_270(data->rotation)) {
modifier = data->override_modifier ?: I915_FORMAT_MOD_Y_TILED;
igt_swap(w, h);
}
/*
* Just try here if requested modifier format is generally available,
* if one format fail it will skip entire subtest.
*/
igt_require(igt_display_has_format_mod(display, pixel_format, modifier));
if (!data->crc_rect[data->output_crc_in_use][rect].valid) {
/*
* Create a reference software rotated flip framebuffer.
*/
igt_create_fb(data->gfx_fd, ref_w, ref_h,
pixel_format, modifier, &data->fb_flip);
paint_squares(data, data->rotation, &data->fb_flip,
flip_opacity);
igt_plane_set_fb(plane, &data->fb_flip);
if (plane->type != DRM_PLANE_TYPE_CURSOR)
igt_plane_set_position(plane, data->pos_x, data->pos_y);
igt_display_commit2(display, COMMIT_ATOMIC);
if (is_amdgpu_device(data->gfx_fd)) {
igt_pipe_crc_collect_crc(
data->pipe_crc,
&data->crc_rect[data->output_crc_in_use][rect].flip_crc);
} else {
igt_pipe_crc_get_current(
display->drm_fd, data->pipe_crc,
&data->crc_rect[data->output_crc_in_use][rect].flip_crc);
igt_remove_fb(data->gfx_fd, &data->fb_flip);
}
/*
* Create a reference CRC for a software-rotated fb.
*/
igt_create_fb(data->gfx_fd, ref_w, ref_h, pixel_format,
data->override_modifier ?: DRM_FORMAT_MOD_LINEAR, &data->fb_reference);
paint_squares(data, data->rotation, &data->fb_reference, 1.0);
igt_plane_set_fb(plane, &data->fb_reference);
if (plane->type != DRM_PLANE_TYPE_CURSOR)
igt_plane_set_position(plane, data->pos_x, data->pos_y);
igt_display_commit2(display, COMMIT_ATOMIC);
if (is_amdgpu_device(data->gfx_fd)) {
igt_pipe_crc_collect_crc(
data->pipe_crc,
&data->crc_rect[data->output_crc_in_use][rect].ref_crc);
igt_remove_fb(data->gfx_fd, &data->fb_flip);
} else {
igt_pipe_crc_get_current(
display->drm_fd, data->pipe_crc,
&data->crc_rect[data->output_crc_in_use][rect].ref_crc);
}
data->crc_rect[data->output_crc_in_use][rect].valid = true;
}
data->last_on_screen = data->fb_flip;
/*
* Prepare the non-rotated flip fb.
*/
igt_create_fb(data->gfx_fd, w, h, pixel_format, modifier,
&data->fb_flip);
paint_squares(data, IGT_ROTATION_0, &data->fb_flip,
flip_opacity);
/*
* Prepare the plane with an non-rotated fb let the hw rotate it.
*/
igt_create_fb(data->gfx_fd, w, h, pixel_format, modifier, &data->fb);
paint_squares(data, IGT_ROTATION_0, &data->fb, 1.0);
igt_plane_set_fb(plane, &data->fb);
if (plane->type != DRM_PLANE_TYPE_CURSOR)
igt_plane_set_position(plane, data->pos_x, data->pos_y);
}
static void test_single_case(data_t *data, enum pipe pipe,
igt_output_t *output, igt_plane_t *plane,
enum rectangle_type rect,
uint32_t format, bool test_bad_format)
{
igt_display_t *display = &data->display;
igt_crc_t crc_output;
int ret;
igt_debug("Testing case %i on pipe %s, format %s\n", rect, kmstest_pipe_name(pipe), igt_format_str(format));
prepare_fbs(data, output, plane, rect, format);
igt_plane_set_rotation(plane, data->rotation);
if (igt_rotation_90_or_270(data->rotation))
igt_plane_set_size(plane, data->fb.height, data->fb.width);
ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
/*
* Remove this last fb after it was taken out from screen
* to avoid unnecessary delays.
*/
igt_remove_fb(data->gfx_fd, &data->last_on_screen);
if (test_bad_format) {
igt_pipe_crc_drain(data->pipe_crc);
igt_assert_eq(ret, -EINVAL);
return;
}
/* Verify commit was ok. */
igt_assert_eq(ret, 0);
/* Check CRC */
if (is_amdgpu_device(data->gfx_fd)) {
igt_pipe_crc_collect_crc(data->pipe_crc, &crc_output);
} else {
igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc,
&crc_output);
}
igt_assert_crc_equal(
&data->crc_rect[data->output_crc_in_use][rect].ref_crc,
&crc_output);
/*
* If flips are requested flip to a different fb and
* check CRC against that one as well.
*/
if (data->fb_flip.fb_id) {
igt_plane_set_fb(plane, &data->fb_flip);
if (igt_rotation_90_or_270(data->rotation))
igt_plane_set_size(plane, data->fb.height, data->fb.width);
if (plane->type != DRM_PLANE_TYPE_PRIMARY) {
igt_display_commit_atomic(display, DRM_MODE_PAGE_FLIP_EVENT | DRM_MODE_ATOMIC_NONBLOCK, NULL);
} else {
ret = drmModePageFlip(data->gfx_fd,
output->config.crtc->crtc_id,
data->fb_flip.fb_id,
DRM_MODE_PAGE_FLIP_EVENT,
NULL);
igt_assert_eq(ret, 0);
}
kmstest_wait_for_pageflip(data->gfx_fd);
if (is_amdgpu_device(data->gfx_fd)) {
igt_pipe_crc_collect_crc(data->pipe_crc, &crc_output);
} else {
igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc,
&crc_output);
}
igt_assert_crc_equal(&data->crc_rect[data->output_crc_in_use][rect].flip_crc,
&crc_output);
}
}
static bool test_format(data_t *data,
struct igt_vec *tested_formats,
uint32_t format)
{
if (!igt_fb_supported_format(format))
return false;
if (!is_intel_device(data->gfx_fd) ||
data->extended)
return true;
format = igt_reduce_format(format);
/* only test each format "class" once */
if (igt_vec_index(tested_formats, &format) >= 0)
return false;
igt_vec_push(tested_formats, &format);
return true;
}
static bool plane_rotation_requirements(data_t *data, igt_plane_t *plane)
{
if (!igt_plane_has_prop(plane, IGT_PLANE_ROTATION))
return false;
if (!igt_plane_has_rotation(plane, data->rotation))
return false;
/* CHV can't rotate and reflect simultaneously */
if (!(!is_intel_device(data->gfx_fd) || !IS_CHERRYVIEW(data->devid) ||
data->rotation != (IGT_ROTATION_180 | IGT_REFLECT_X)))
return false;
/* Intel display version 20 onwards cannot do reflect-x with tile4 */
if (!(!is_intel_device(data->gfx_fd) ||
intel_display_ver(data->devid) < 20 ||
!(data->override_modifier == I915_FORMAT_MOD_4_TILED &&
data->rotation & IGT_REFLECT_X)))
return false;
return true;
}
static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_format)
{
igt_display_t *display = &data->display;
drmModeModeInfo *mode;
igt_output_t *output;
enum pipe pipe;
int pipe_count = 0, connected_outputs = 0;
bool found = false;
if (is_amdgpu_device(data->gfx_fd))
igt_require(plane_type != DRM_PLANE_TYPE_OVERLAY &&
plane_type != DRM_PLANE_TYPE_CURSOR);
if (plane_type == DRM_PLANE_TYPE_CURSOR)
igt_require(display->has_cursor_plane);
igt_display_require_output(display);
for_each_connected_output(&data->display, output)
connected_outputs++;
for_each_pipe_with_valid_output(display, pipe, output) {
igt_plane_t *plane;
int i, j, c;
igt_display_reset(display);
igt_output_set_pipe(output, pipe);
if (!intel_pipe_output_combo_valid(display))
continue;
found = true;
mode = igt_output_get_mode(output);
/*
* Find mode which is in use in connector. If this is mode
* which was not run on earlier we'll end up on zeroed
* struct crc_rect and recalculate reference crcs.
*/
for (data->output_crc_in_use = 0;
data->output_crc_in_use < data->max_crc_in_use &&
data->crc_rect[data->output_crc_in_use][0].mode != mode->vdisplay;
data->output_crc_in_use++)
;
/*
* This is if there was different mode on different connector
* and this mode was not run on before.
*/
if (data->crc_rect[data->output_crc_in_use][0].mode != mode->vdisplay) {
data->crc_rect[data->output_crc_in_use][0].mode = mode->vdisplay;
data->max_crc_in_use++;
if (data->max_crc_in_use >= MAX_TESTED_MODES)
data->max_crc_in_use = MAX_TESTED_MODES - 1;
}
for (c = 0; c < num_rectangle_types; c++)
data->crc_rect[data->output_crc_in_use][c].valid = false;
/* restricting the execution to 2 pipes to reduce execution time*/
if (pipe_count == 2 * connected_outputs && !data->extended)
break;
pipe_count++;
igt_output_set_pipe(output, pipe);
plane = igt_output_get_plane_type(output, plane_type);
igt_require(plane_rotation_requirements(data, plane));
prepare_crtc(data, output, pipe, plane, true);
for (i = 0; i < num_rectangle_types; i++) {
/* Unsupported on intel */
if (plane_type == DRM_PLANE_TYPE_CURSOR &&
i != square)
continue;
/* Only support partial covering primary plane on gen9+ */
if (is_amdgpu_device(data->gfx_fd) ||
(plane_type == DRM_PLANE_TYPE_PRIMARY &&
is_intel_device(data->gfx_fd) &&
intel_display_ver(data->devid) < 9)) {
if (i != rectangle)
continue;
else
data->use_native_resolution = true;
} else {
data->use_native_resolution = false;
}
if (!data->override_fmt) {
struct igt_vec tested_formats;
igt_vec_init(&tested_formats, sizeof(uint32_t));
for (j = 0; j < plane->drm_plane->count_formats; j++) {
uint32_t format = plane->drm_plane->formats[j];
if (!test_format(data, &tested_formats, format))
continue;
test_single_case(data, pipe, output, plane, i,
format, test_bad_format);
}
igt_vec_fini(&tested_formats);
} else {
test_single_case(data, pipe, output, plane, i,
data->override_fmt, test_bad_format);
}
}
if (is_intel_device(data->gfx_fd)) {
igt_pipe_crc_stop(data->pipe_crc);
}
}
igt_require_f(found, "No valid pipe/output combo found.\n");
}
typedef struct {
int32_t x1, y1, formatindex;
igt_plane_t *plane;
igt_rotation_t rotation_sw, rotation_hw;
planeconfigs_t *fbinfo;
} planeinfos;
static bool setup_multiplane(data_t *data, planeinfos planeinfo[2], drmModeModeInfo *mode,
int hwround)
{
uint32_t w, h;
struct igt_fb *planes[2] = {&planeinfo[0].fbinfo->fbs[planeinfo[0].formatindex][hwround],
&planeinfo[1].fbinfo->fbs[planeinfo[1].formatindex][hwround]};
int c;
if (hwround == MULTIPLANE_REFERENCE) {
planeinfo[0].rotation_sw = planeinfo[0].fbinfo->rotation;
planeinfo[1].rotation_sw = planeinfo[1].fbinfo->rotation;
planeinfo[0].rotation_hw = IGT_ROTATION_0;
planeinfo[1].rotation_hw = IGT_ROTATION_0;
} else {
planeinfo[0].rotation_sw = IGT_ROTATION_0;
planeinfo[1].rotation_sw = IGT_ROTATION_0;
planeinfo[0].rotation_hw = planeinfo[0].fbinfo->rotation;
planeinfo[1].rotation_hw = planeinfo[1].fbinfo->rotation;
}
for (c = 0; c < ARRAY_SIZE(planes); c++) {
/*
* make plane and fb width and height always divisible by 4
* due to NV12 support and Intel hw workarounds.
*/
w = (uint64_t)(planeinfo[c].fbinfo->width * TEST_WIDTH(mode)) & ~3;
h = (uint64_t)(planeinfo[c].fbinfo->height * TEST_HEIGHT(mode)) & ~3;
if (igt_rotation_90_or_270(planeinfo[c].rotation_sw))
igt_swap(w, h);
if (!igt_plane_has_format_mod(planeinfo[c].plane,
multiplaneformatlist[planeinfo[c].formatindex],
planeinfo[c].fbinfo->modifier))
return false;
/*
* was this hw/sw rotation ran already or need to create
* new fb?
*/
if (planes[c]->fb_id == 0) {
igt_create_fb(data->gfx_fd, w, h,
multiplaneformatlist[planeinfo[c].formatindex],
planeinfo[c].fbinfo->modifier, planes[c]);
paint_squares(data, planeinfo[c].rotation_sw,
planes[c], 1.0f);
}
igt_plane_set_fb(planeinfo[c].plane, planes[c]);
if (igt_rotation_90_or_270(planeinfo[c].rotation_hw))
igt_plane_set_size(planeinfo[c].plane, h, w);
igt_plane_set_position(planeinfo[c].plane, planeinfo[c].x1,
planeinfo[c].y1);
igt_plane_set_rotation(planeinfo[c].plane,
planeinfo[c].rotation_hw);
}
return true;
}
static void pointlocation(data_t *data, planeinfos p[2], drmModeModeInfo *mode,
int c)
{
if (data->planepos[c].origo & p_right) {
p[c].x1 = (int32_t)(data->planepos[c].x * TEST_WIDTH(mode)
+ mode->hdisplay);
p[c].x1 &= ~3;
/*
* At this point is handled surface on right side. If display
* mode is not divisible by 4 but with 2 point location is
* fixed to match requirements. Because of YUV planes here is
* intentionally ignored bit 1.
*/
p[c].x1 -= mode->hdisplay & 2;
} else {
p[c].x1 = (int32_t)(data->planepos[c].x * TEST_WIDTH(mode));
p[c].x1 &= ~3;
}
if (data->planepos[c].origo & p_bottom) {
p[c].y1 = (int32_t)(data->planepos[c].y * TEST_HEIGHT(mode)
+ mode->vdisplay);
p[c].y1 &= ~3;
p[c].y1 -= mode->vdisplay & 2;
} else {
p[c].y1 = (int32_t)(data->planepos[c].y * TEST_HEIGHT(mode));
p[c].y1 &= ~3;
}
}
static bool multiplaneskiproundcheck(data_t *data, planeinfos p[2])
{
/*
* RGB565 90/270 degrees rotation is supported
* from gen11 onwards.
*/
if (multiplaneformatlist[p[0].formatindex] == DRM_FORMAT_RGB565 &&
igt_rotation_90_or_270(p[0].fbinfo->rotation)
&& intel_display_ver(data->devid) < 11)
return false;
if (multiplaneformatlist[p[1].formatindex] == DRM_FORMAT_RGB565 &&
igt_rotation_90_or_270(p[1].fbinfo->rotation)
&& intel_display_ver(data->devid) < 11)
return false;
if (!igt_plane_has_rotation(p[0].plane, p[0].fbinfo->rotation))
return false;
if (!igt_plane_has_rotation(p[1].plane, p[1].fbinfo->rotation))
return false;
if (igt_run_in_simulation() &&
(multiplaneformatlist[p[0].formatindex] == DRM_FORMAT_P010 ||
multiplaneformatlist[p[0].formatindex] == DRM_FORMAT_RGB565))
return false;
if (igt_run_in_simulation() &&
(multiplaneformatlist[p[1].formatindex] == DRM_FORMAT_P010 ||
multiplaneformatlist[p[1].formatindex] == DRM_FORMAT_RGB565))
return false;
return true;
}
/*
* count trailing zeroes
*/
#define ctz __builtin_ctz
/*
* this is to make below inner loops more readable.
* 1 = left plane has palar format
* 2 = right plane has planar format
* 3 = both planes has planar formats
*/
#define planarcheck (igt_format_is_yuv_semiplanar(multiplaneformatlist[p[0].formatindex]) | \
(igt_format_is_yuv_semiplanar(multiplaneformatlist[p[1].formatindex]) << 1))
/*
* used formats are packed formats and these rotation were already seen on
* screen so crc was already logged?
*/
static bool havepackedcrc(planeinfos p[2], igt_crc_t crclog[16])
{
int logindex;
if (planarcheck != 0)
return false;
logindex = ctz(p[0].fbinfo->rotation);
logindex |= ctz(p[1].fbinfo->rotation) << 2;
if (crclog[logindex].frame == 0)
return false;
return true;
}
/*
* check left plane has planar format, right plane doesn't have planar format
* and rotations stay the same, if all these are true crc can be re-used from
* previous round.
*/
static bool reusecrcfromlastround(planeinfos p[2], int lastroundp1format,
int lastroundp0rotation,
int lastroundp1rotation)
{
if (igt_run_in_simulation())
return false;
if (planarcheck != 1)
return false;
if (igt_format_is_yuv_semiplanar(lastroundp1format))
return false;
if (p[0].fbinfo->rotation != lastroundp0rotation)
return false;
if (p[1].fbinfo->rotation != lastroundp1rotation)
return false;
return true;
}
/*
* Here is pipe parameter which is now used only for first pipe.
* It is left here if this test ever was wanted to be run on
* different pipes.
*/
static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
{
igt_display_t *display = &data->display;
igt_output_t *output;
igt_crc_t retcrc_sw, retcrc_hw;
planeinfos p[2];
int lastroundirotation = 0, lastroundjrotation = 0,
lastroundjformat = 0, c, d;
drmModeModeInfo *mode;
bool have_crc; // flag if can use previously logged crc for comparison
igt_crc_t crclog[16] = {}; //4 * 4 rotation crc storage for packed formats
char *str1, *str2; // for debug printouts
int logindex;
static planeconfigs_t planeconfigs[] = {
{IGT_ROTATION_0, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_X_TILED },
{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_4_TILED },
{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
{IGT_ROTATION_180, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_X_TILED },
{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_4_TILED },
{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
};
bool found = false;
igt_display_require_output(display);
for_each_valid_output_on_pipe(display, pipe, output) {
int i, j, k, l, flipsw, fliphw;
igt_display_reset(display);
igt_output_set_pipe(output, pipe);
if (!intel_pipe_output_combo_valid(display))
continue;
found = true;
mode = igt_output_get_mode(output);
igt_display_commit2(display, COMMIT_ATOMIC);
p[0].plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
p[1].plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_OVERLAY);
data->pipe_crc = igt_pipe_crc_new(data->gfx_fd, pipe,
IGT_PIPE_CRC_SOURCE_AUTO);
igt_pipe_crc_start(data->pipe_crc);
for (i = 0; i < ARRAY_SIZE(planeconfigs); i++) {
p[0].fbinfo = &planeconfigs[i];
pointlocation(data, p, mode, 0);
for (k = 0; k < ARRAY_SIZE(multiplaneformatlist); k++) {
p[0].formatindex = k;
for (j = 0; j < ARRAY_SIZE(planeconfigs); j++) {
p[1].fbinfo = &planeconfigs[j];
pointlocation(data, p, mode, 1);
for (l = 0; l < ARRAY_SIZE(multiplaneformatlist); l++) {
p[1].formatindex = l;
if (!multiplaneskiproundcheck(data, p))
continue;
/*
* if using packed formats crc's will be
* same and can store them so there's
* no need to redo reference image and
* just use stored crc.
*/
if (havepackedcrc(p, crclog)) {
logindex = ctz(p[0].fbinfo->rotation);
logindex |= ctz(p[1].fbinfo->rotation) << 2;
retcrc_sw = crclog[logindex];
have_crc = true;
} else if(reusecrcfromlastround(p, lastroundjformat,
lastroundirotation,
lastroundjrotation)) {
/*
* With planar formats can benefit
* from previous crc if rotations
* stay same. If both planes
* have planar format in use we
* need to skip that case.
* If last round right plane
* had planar format need to skip
* this.
*/
have_crc = true;
} else {
/*
* here will be created
* reference image and get crc
* if didn't have stored crc
* or planar format is in use.
* have_crc flag will control
* crc comparison part.
*/
if (!setup_multiplane(data, p, mode, MULTIPLANE_REFERENCE))
continue;
igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
flipsw = kmstest_get_vblank(data->gfx_fd, pipe, 0) + 1;
have_crc = false;
}
/*
* create hw rotated image and
* get vblank where interesting
* crc will be at, grab crc bit later
*/
if (!setup_multiplane(data, p, mode, MULTIPLANE_ROTATED))
continue;
igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
fliphw = kmstest_get_vblank(data->gfx_fd, pipe, 0) + 1;
if (!have_crc) {
igt_pipe_crc_get_for_frame(data->gfx_fd,
data->pipe_crc,
flipsw,
&retcrc_sw);
if (planarcheck == 0) {
logindex = ctz(p[0].fbinfo->rotation);
logindex |= ctz(p[1].fbinfo->rotation) << 2;
crclog[logindex] = retcrc_sw;
}
}
igt_pipe_crc_get_for_frame(data->gfx_fd, data->pipe_crc, fliphw, &retcrc_hw);
str1 = igt_crc_to_string(&retcrc_sw);
str2 = igt_crc_to_string(&retcrc_hw);
igt_debug("crc %.8s vs %.8s -- %.4s - %.4s crc buffered:%s rot1 %d rot2 %d\n",
str1, str2,
(char *) &multiplaneformatlist[p[0].formatindex],
(char *) &multiplaneformatlist[p[1].formatindex],
have_crc ? "yes" : " no",
(int[]) {0, 90, 180, 270} [ctz(planeconfigs[i].rotation)],
(int[]) {0, 90, 180, 270} [ctz(planeconfigs[j].rotation)]);
free(str1);
free(str2);
igt_assert_crc_equal(&retcrc_sw, &retcrc_hw);
lastroundjformat = multiplaneformatlist[p[1].formatindex];
lastroundirotation = planeconfigs[i].rotation;
lastroundjrotation = planeconfigs[j].rotation;
}
}
}
}
igt_pipe_crc_stop(data->pipe_crc);
igt_pipe_crc_free(data->pipe_crc);
igt_plane_set_fb(p[0].plane, NULL);
igt_plane_set_fb(p[1].plane, NULL);
igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
for (i = 0; i < ARRAY_SIZE(crclog); i++)
crclog[i].frame = 0;
lastroundjformat = 0;
lastroundirotation = 0;
lastroundjrotation = 0;
igt_output_set_pipe(output, PIPE_NONE);
}
data->pipe_crc = NULL;
for (c = 0; c < ARRAY_SIZE(planeconfigs); c++) {
for (d = 0; d < ARRAY_SIZE(multiplaneformatlist); d++) {
igt_remove_fb(data->gfx_fd, &planeconfigs[c].fbs[d][MULTIPLANE_REFERENCE]);
igt_remove_fb(data->gfx_fd, &planeconfigs[c].fbs[d][MULTIPLANE_ROTATED]);
}
}
igt_require_f(found, "No valid pipe/output combo found.\n");
}
static void test_plane_rotation_exhaust_fences(data_t *data,
enum pipe pipe,
igt_output_t *output,
igt_plane_t *plane)
{
igt_display_t *display = &data->display;
uint64_t modifier = I915_FORMAT_MOD_Y_TILED;
uint32_t format = DRM_FORMAT_XRGB8888;
int fd = data->gfx_fd;
drmModeModeInfo *mode;
struct igt_fb fb[MAX_FENCES+1] = {};
struct igt_fb tmp_fb;
unsigned int w, h;
uint64_t total_aperture_size, total_fbs_size;
int i;
igt_require(igt_plane_has_prop(plane, IGT_PLANE_ROTATION));
igt_require(igt_plane_has_rotation(plane, IGT_ROTATION_0 | IGT_ROTATION_90));
igt_require(gem_available_fences(display->drm_fd) > 0);
prepare_crtc(data, output, pipe, plane, false);
mode = igt_output_get_mode(output);
w = mode->hdisplay;
h = mode->vdisplay;
igt_init_fb(&tmp_fb, fd, w, h, format, modifier,
IGT_COLOR_YCBCR_BT709, IGT_COLOR_YCBCR_LIMITED_RANGE);
igt_calc_fb_size(&tmp_fb);
/*
* Make sure there is atleast 90% of the available GTT space left
* for creating (MAX_FENCES+1) framebuffers.
*/
total_fbs_size = tmp_fb.size * (MAX_FENCES + 1);
total_aperture_size = gem_available_aperture_size(fd);
igt_require(total_fbs_size < total_aperture_size * 0.9);
for (i = 0; i < MAX_FENCES + 1; i++) {
igt_create_fb(fd, w, h, format, modifier, &fb[i]);
igt_plane_set_fb(plane, &fb[i]);
igt_plane_set_rotation(plane, IGT_ROTATION_0);
igt_display_commit2(display, COMMIT_ATOMIC);
igt_plane_set_rotation(plane, IGT_ROTATION_90);
igt_plane_set_size(plane, h, w);
igt_display_commit2(display, COMMIT_ATOMIC);
}
for (i = 0; i < MAX_FENCES + 1; i++)
igt_remove_fb(fd, &fb[i]);
}
static const char *plane_test_str(unsigned plane)
{
switch (plane) {
case DRM_PLANE_TYPE_PRIMARY:
return "primary";
case DRM_PLANE_TYPE_OVERLAY:
return "sprite";
case DRM_PLANE_TYPE_CURSOR:
return "cursor";
default:
igt_assert(0);
}
}
static int opt_handler(int opt, int opt_index, void *_data)
{
data_t *data = _data;
switch (opt) {
case 'e':
data->extended = true;
break;
}
return IGT_OPT_HANDLER_SUCCESS;
}
static const struct option long_opts[] = {
{ .name = "extended", .has_arg = false, .val = 'e', },
{}
};
static const char help_str[] =
" --extended\t\tRun the extended tests\n";
static data_t data;
igt_main_args("", long_opts, help_str, opt_handler, &data)
{
struct rot_subtest {
unsigned plane;
igt_rotation_t rot;
} *subtest, subtests[] = {
{ DRM_PLANE_TYPE_PRIMARY, IGT_ROTATION_90 },
{ DRM_PLANE_TYPE_PRIMARY, IGT_ROTATION_180 },
{ DRM_PLANE_TYPE_PRIMARY, IGT_ROTATION_270 },
{ DRM_PLANE_TYPE_OVERLAY, IGT_ROTATION_90 },
{ DRM_PLANE_TYPE_OVERLAY, IGT_ROTATION_180 },
{ DRM_PLANE_TYPE_OVERLAY, IGT_ROTATION_270 },
{ DRM_PLANE_TYPE_CURSOR, IGT_ROTATION_180 },
{ 0, 0}
};
struct reflect_x {
uint64_t modifier;
igt_rotation_t rot;
} *reflect_x, reflect_x_subtests[] = {
{ I915_FORMAT_MOD_X_TILED, IGT_ROTATION_0 },
{ I915_FORMAT_MOD_X_TILED, IGT_ROTATION_180 },
{ I915_FORMAT_MOD_Y_TILED, IGT_ROTATION_0 },
{ I915_FORMAT_MOD_Y_TILED, IGT_ROTATION_90 },
{ I915_FORMAT_MOD_Y_TILED, IGT_ROTATION_180 },
{ I915_FORMAT_MOD_Y_TILED, IGT_ROTATION_270 },
{ I915_FORMAT_MOD_Yf_TILED, IGT_ROTATION_0 },
{ I915_FORMAT_MOD_Yf_TILED, IGT_ROTATION_90 },
{ I915_FORMAT_MOD_Yf_TILED, IGT_ROTATION_180 },
{ I915_FORMAT_MOD_Yf_TILED, IGT_ROTATION_270 },
{ I915_FORMAT_MOD_4_TILED, IGT_ROTATION_0 },
{ I915_FORMAT_MOD_4_TILED, IGT_ROTATION_180 },
{ 0, 0 }
};
int gen = 0;
igt_fixture {
data.gfx_fd = drm_open_driver_master(DRIVER_ANY);
if (is_intel_device(data.gfx_fd)) {
data.devid = intel_get_drm_devid(data.gfx_fd);
gen = intel_display_ver(data.devid);
}
kmstest_set_vt_graphics_mode();
igt_require_pipe_crc(data.gfx_fd);
igt_display_require(&data.display, data.gfx_fd);
igt_require(data.display.is_atomic);
}
igt_describe("Rotation test with 90/270 degree for primary and sprite planes of gen9+");
for (subtest = subtests; subtest->rot; subtest++) {
igt_subtest_f("%s-rotation-%s",
plane_test_str(subtest->plane),
igt_plane_rotation_name(subtest->rot)) {
if (is_amdgpu_device(data.gfx_fd)) {
data.override_fmt = DRM_FORMAT_XRGB8888;
if (igt_rotation_90_or_270(subtest->rot))
data.override_modifier = AMD_FMT_MOD |
AMD_FMT_MOD_SET(TILE, AMD_FMT_MOD_TILE_GFX9_64K_S) |
AMD_FMT_MOD_SET(TILE_VERSION, AMD_FMT_MOD_TILE_VER_GFX9);
else
data.override_modifier = DRM_FORMAT_MOD_LINEAR;
}
data.rotation = subtest->rot;
test_plane_rotation(&data, subtest->plane, false);
}
}
igt_describe("Rotation test with 90 degree for a plane of gen9+ with given position");
igt_subtest_f("sprite-rotation-90-pos-100-0") {
data.rotation = IGT_ROTATION_90;
data.pos_x = 100,
data.pos_y = 0;
test_plane_rotation(&data, DRM_PLANE_TYPE_OVERLAY, false);
}
data.pos_x = 0,
data.pos_y = 0;
igt_describe("Checking unsupported pixel format for gen9+ with 90 degree of rotation");
igt_subtest_f("bad-pixel-format") {
/* gen11 enables RGB565 rotation for 90/270 degrees.
* so apart from this, any other gen11+ pixel format
* can be used which doesn't support 90/270 degree
* rotation */
data.rotation = IGT_ROTATION_90;
data.override_fmt = gen < 11 ? DRM_FORMAT_RGB565 : DRM_FORMAT_Y212;
test_plane_rotation(&data, DRM_PLANE_TYPE_PRIMARY, true);
}
data.override_fmt = 0;
igt_describe("Checking unsupported tiling for gen9+ with 90 degree of rotation");
igt_subtest_f("bad-tiling") {
data.rotation = IGT_ROTATION_90;
data.override_modifier = I915_FORMAT_MOD_X_TILED;
test_plane_rotation(&data, DRM_PLANE_TYPE_PRIMARY, true);
}
data.override_modifier = 0;
igt_describe("Tiling and Rotation test for gen 10+ for primary plane");
for (reflect_x = reflect_x_subtests; reflect_x->modifier; reflect_x++) {
igt_fixture
igt_require_intel(data.gfx_fd);
igt_subtest_f("primary-%s-tiled-reflect-x-%s",
igt_fb_modifier_name(reflect_x->modifier),
igt_plane_rotation_name(reflect_x->rot)) {
data.rotation = (IGT_REFLECT_X | reflect_x->rot);
data.override_modifier = reflect_x->modifier;
test_plane_rotation(&data, DRM_PLANE_TYPE_PRIMARY, false);
}
}
igt_describe("Rotation test on both planes by making them fully visible");
igt_subtest_f("multiplane-rotation") {
igt_require(gen >= 9);
cleanup_crtc(&data);
data.planepos[0].origo = p_top | p_left;
data.planepos[0].x = .2f;
data.planepos[0].y = .1f;
data.planepos[1].origo = p_top | p_right;
data.planepos[1].x = -.4f;
data.planepos[1].y = .1f;
test_multi_plane_rotation(&data, 0);
}
igt_describe("Rotation test on both planes by cropping left/top corner of primary plane and"
"right/top corner of sprite plane");
igt_subtest_f("multiplane-rotation-cropping-top") {
igt_require(gen >= 9);
cleanup_crtc(&data);
data.planepos[0].origo = p_top | p_left;
data.planepos[0].x = -.05f;
data.planepos[0].y = -.15f;
data.planepos[1].origo = p_top | p_right;
data.planepos[1].x = -.15f;
data.planepos[1].y = -.15f;
test_multi_plane_rotation(&data, 0);
}
igt_describe("Rotation test on both planes by cropping left/bottom corner of primary plane"
"and right/bottom corner of sprite plane");
igt_subtest_f("multiplane-rotation-cropping-bottom") {
igt_require(gen >= 9);
cleanup_crtc(&data);
data.planepos[0].origo = p_bottom | p_left;
data.planepos[0].x = -.05f;
data.planepos[0].y = -.20f;
data.planepos[1].origo = p_bottom | p_right;
data.planepos[1].x = -.15f;
data.planepos[1].y = -.20f;
test_multi_plane_rotation(&data, 0);
}
/*
* exhaust-fences should be last test, if it fails we may OOM in
* the following subtests otherwise.
*/
igt_describe("This test intends to check for fence leaks exhaustively");
igt_subtest_f("exhaust-fences") {
enum pipe pipe;
igt_output_t *output;
igt_require_intel(data.gfx_fd);
igt_display_require_output(&data.display);
for_each_pipe_with_valid_output(&data.display, pipe, output) {
igt_plane_t *primary = &data.display.pipes[pipe].planes[0];
test_plane_rotation_exhaust_fences(&data, pipe, output, primary);
break;
}
}
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.gfx_fd);
}
}
|