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
|
// SPDX-License-Identifier: MIT
/*
* Copyright © 2021 Intel Corporation
*/
/**
* TEST: Basic tests for execbuf functionality for virtual and parallel exec_queues
* Category: Core
* Mega feature: General Core features
* Sub-category: CMD submission
* Functionality: reset
* Test category: functionality test
*/
#include <fcntl.h>
#include "igt.h"
#include "lib/igt_syncobj.h"
#include "lib/intel_reg.h"
#include "xe_drm.h"
#include "xe/xe_ioctl.h"
#include "xe/xe_query.h"
#include "xe/xe_gt.h"
#include "xe/xe_legacy.h"
#include "xe/xe_spin.h"
#include <string.h>
#define SYNC_OBJ_SIGNALED (0x1 << 0)
#define LEGACY_MODE_ADDR 0x1a0000
/**
* SUBTEST: spin
* Description: test spin
*
* SUBTEST: spin-signaled
* Description: test spin with signaled sync obj
*/
static void test_spin(int fd, struct drm_xe_engine_class_instance *eci,
unsigned int flags)
{
uint32_t vm;
uint64_t addr = 0x1a0000;
struct drm_xe_sync sync[2] = {
{ .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
{ .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
};
struct drm_xe_exec exec = {
.num_batch_buffer = 1,
.num_syncs = 2,
.syncs = to_user_pointer(sync),
};
uint32_t exec_queue;
uint32_t syncobj;
size_t bo_size;
uint32_t bo = 0;
struct xe_spin *spin;
struct xe_spin_opts spin_opts = { .addr = addr, .preempt = false };
int i;
vm = xe_vm_create(fd, 0, 0);
bo_size = sizeof(*spin);
bo_size = xe_bb_size(fd, bo_size);
bo = xe_bo_create(fd, vm, bo_size,
vram_if_possible(fd, eci->gt_id),
DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
spin = xe_bo_map(fd, bo, bo_size);
exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
syncobj = syncobj_create(fd, (flags & SYNC_OBJ_SIGNALED) ?
DRM_SYNCOBJ_CREATE_SIGNALED : 0);
sync[0].handle = syncobj_create(fd, 0);
xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
#define N_TIMES 4
for (i = 0; i < N_TIMES; ++i) {
xe_spin_init(spin, &spin_opts);
sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
sync[1].handle = syncobj;
exec.exec_queue_id = exec_queue;
exec.address = addr;
xe_exec(fd, &exec);
xe_spin_wait_started(spin);
usleep(50000);
igt_assert(!syncobj_wait(fd, &syncobj, 1, 1, 0, NULL));
xe_spin_end(spin);
igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
}
#undef N_TIMES
sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
syncobj_destroy(fd, sync[0].handle);
syncobj_destroy(fd, syncobj);
xe_exec_queue_destroy(fd, exec_queue);
munmap(spin, bo_size);
gem_close(fd, bo);
xe_vm_destroy(fd, vm);
}
#define MAX_N_EXECQUEUES 16
#define GT_RESET (0x1 << 0)
#define CLOSE_FD (0x1 << 1)
#define CLOSE_EXEC_QUEUES (0x1 << 2)
#define VIRTUAL (0x1 << 3)
#define PARALLEL (0x1 << 4)
#define CAT_ERROR (0x1 << 5)
/**
* SUBTEST: %s-cat-error
* Description: Test %arg[1] cat error
*
* SUBTEST: %s-gt-reset
* Description: Test %arg[1] GT reset
*
* SUBTEST: virtual-close-fd-no-exec
* Description: Test virtual close fd no-exec
*
* SUBTEST: parallel-close-fd-no-exec
* Description: Test parallel close fd no-exec
*
* SUBTEST: %s-close-fd
* Description: Test %arg[1] close fd
*
* SUBTEST: %s-close-execqueues-close-fd
* Description: Test %arg[1] close exec_queues close fd
*
* arg[1]:
*
* @virtual: virtual
* @parallel: parallel
*/
static void
test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
unsigned int flags)
{
uint32_t vm;
uint64_t addr = 0x1a0000;
struct drm_xe_sync sync[2] = {
{ .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
{ .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
};
struct drm_xe_exec exec = {
.num_syncs = 2,
.syncs = to_user_pointer(sync),
};
uint32_t exec_queues[MAX_N_EXECQUEUES];
uint32_t syncobjs[MAX_N_EXECQUEUES];
size_t bo_size;
uint32_t bo = 0;
struct {
struct xe_spin spin;
uint32_t batch[16];
uint64_t pad;
uint32_t data;
} *data;
struct xe_spin_opts spin_opts = { .preempt = false };
struct drm_xe_engine_class_instance eci[XE_MAX_ENGINE_INSTANCE];
int i, j, b, num_placements, bad_batches = 1;
igt_assert_lte(n_exec_queues, MAX_N_EXECQUEUES);
if (flags & CLOSE_FD)
fd = drm_open_driver(DRIVER_XE);
num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
if (num_placements < 2)
return;
vm = xe_vm_create(fd, 0, 0);
bo_size = sizeof(*data) * n_execs;
bo_size = xe_bb_size(fd, bo_size);
bo = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, gt),
DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
data = xe_bo_map(fd, bo, bo_size);
for (i = 0; i < n_exec_queues; i++) {
igt_assert_eq(__xe_exec_queue_create(fd, vm,
flags & PARALLEL ? num_placements : 1,
flags & PARALLEL ? 1 : num_placements,
eci, 0, &exec_queues[i]), 0);
syncobjs[i] = syncobj_create(fd, 0);
};
exec.num_batch_buffer = flags & PARALLEL ? num_placements : 1;
sync[0].handle = syncobj_create(fd, 0);
xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
if (flags & VIRTUAL && (flags & CAT_ERROR || flags & GT_RESET))
bad_batches = num_placements;
for (i = 0; i < n_execs; i++) {
uint64_t base_addr = flags & CAT_ERROR && i < bad_batches ?
addr + bo_size * 128 : addr;
uint64_t batch_offset = (char *)&data[i].batch - (char *)data;
uint64_t batch_addr = base_addr + batch_offset;
uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
uint64_t sdi_addr = base_addr + sdi_offset;
uint64_t exec_addr;
uint64_t batches[XE_MAX_ENGINE_INSTANCE];
int e = i % n_exec_queues;
for (j = 0; j < num_placements && flags & PARALLEL; ++j)
batches[j] = batch_addr;
if (i < bad_batches) {
spin_opts.addr = base_addr + spin_offset;
xe_spin_init(&data[i].spin, &spin_opts);
exec_addr = spin_opts.addr;
} else {
b = 0;
data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
data[i].batch[b++] = sdi_addr;
data[i].batch[b++] = sdi_addr >> 32;
data[i].batch[b++] = 0xc0ffee;
data[i].batch[b++] = MI_BATCH_BUFFER_END;
igt_assert(b <= ARRAY_SIZE(data[i].batch));
exec_addr = batch_addr;
}
for (j = 0; j < num_placements && flags & PARALLEL; ++j)
batches[j] = exec_addr;
sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
sync[1].handle = syncobjs[e];
exec.exec_queue_id = exec_queues[e];
exec.address = flags & PARALLEL ?
to_user_pointer(batches) : exec_addr;
if (e != i)
syncobj_reset(fd, &syncobjs[e], 1);
xe_exec(fd, &exec);
if (i < bad_batches && !(flags & CAT_ERROR))
xe_spin_wait_started(&data[i].spin);
}
if (flags & GT_RESET)
xe_force_gt_reset_async(fd, gt);
if (flags & CLOSE_FD) {
if (flags & CLOSE_EXEC_QUEUES) {
for (i = 0; i < n_exec_queues; i++)
xe_exec_queue_destroy(fd, exec_queues[i]);
}
drm_close_driver(fd);
/* FIXME: wait for idle */
usleep(150000);
return;
}
for (i = 0; i < n_exec_queues && n_execs; i++)
igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0,
NULL));
igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
if (!(flags & GT_RESET)) {
for (i = bad_batches; i < n_execs; i++)
igt_assert_eq(data[i].data, 0xc0ffee);
}
syncobj_destroy(fd, sync[0].handle);
for (i = 0; i < n_exec_queues; i++) {
syncobj_destroy(fd, syncobjs[i]);
xe_exec_queue_destroy(fd, exec_queues[i]);
}
munmap(data, bo_size);
gem_close(fd, bo);
xe_vm_destroy(fd, vm);
}
/**
* SUBTEST: cat-error
* Description: Test cat error
*
* SUBTEST: gt-reset
* Description: Test GT reset
*
* SUBTEST: close-fd-no-exec
* Description: Test close fd no-exec
*
* SUBTEST: close-fd
* Description: Test close fd
*
* SUBTEST: close-execqueues-close-fd
* Description: Test close exec_queues close fd
*
* SUBTEST: cm-cat-error
* Description: Test compute mode cat-error
*
* SUBTEST: cm-gt-reset
* Description: Test compute mode GT reset
*
* SUBTEST: cm-close-fd-no-exec
* Description: Test compute mode close fd no-exec
*
* SUBTEST: cm-close-fd
* Description: Test compute mode close fd
*
* SUBTEST: cm-close-execqueues-close-fd
* Description: Test compute mode close exec_queues close fd
*/
static void
test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
int n_exec_queues, int n_execs, unsigned int flags)
{
uint32_t vm;
uint64_t addr = 0x1a0000;
#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
struct drm_xe_sync sync[1] = {
{ .type = DRM_XE_SYNC_TYPE_USER_FENCE, .flags = DRM_XE_SYNC_FLAG_SIGNAL,
.timeline_value = USER_FENCE_VALUE },
};
struct drm_xe_exec exec = {
.num_batch_buffer = 1,
.num_syncs = 1,
.syncs = to_user_pointer(sync),
};
uint32_t exec_queues[MAX_N_EXECQUEUES];
size_t bo_size;
uint32_t bo = 0;
struct {
struct xe_spin spin;
uint32_t batch[16];
uint64_t pad;
uint64_t vm_sync;
uint64_t exec_sync;
uint32_t data;
} *data;
struct xe_spin_opts spin_opts = { .preempt = false };
int i, b;
igt_assert_lte(n_exec_queues, MAX_N_EXECQUEUES);
if (flags & CLOSE_FD)
fd = drm_open_driver(DRIVER_XE);
vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
bo_size = sizeof(*data) * n_execs;
bo_size = xe_bb_size(fd, bo_size);
bo = xe_bo_create(fd, vm, bo_size,
vram_if_possible(fd, eci->gt_id),
DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
data = xe_bo_map(fd, bo, bo_size);
memset(data, 0, bo_size);
for (i = 0; i < n_exec_queues; i++) {
exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
};
sync[0].addr = to_user_pointer(&data[0].vm_sync);
xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, 3 * NSEC_PER_SEC);
data[0].vm_sync = 0;
for (i = 0; i < n_execs; i++) {
uint64_t base_addr = flags & CAT_ERROR && !i ?
addr + bo_size * 128 : addr;
uint64_t batch_offset = (char *)&data[i].batch - (char *)data;
uint64_t batch_addr = base_addr + batch_offset;
uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
uint64_t sdi_addr = base_addr + sdi_offset;
uint64_t exec_addr;
int e = i % n_exec_queues;
if (!i) {
spin_opts.addr = base_addr + spin_offset;
xe_spin_init(&data[i].spin, &spin_opts);
exec_addr = spin_opts.addr;
} else {
b = 0;
data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
data[i].batch[b++] = sdi_addr;
data[i].batch[b++] = sdi_addr >> 32;
data[i].batch[b++] = 0xc0ffee;
data[i].batch[b++] = MI_BATCH_BUFFER_END;
igt_assert(b <= ARRAY_SIZE(data[i].batch));
exec_addr = batch_addr;
}
sync[0].addr = base_addr +
(char *)&data[i].exec_sync - (char *)data;
exec.exec_queue_id = exec_queues[e];
exec.address = exec_addr;
xe_exec(fd, &exec);
}
if (flags & GT_RESET)
xe_force_gt_reset_sync(fd, eci->gt_id);
if (flags & CLOSE_FD) {
if (flags & CLOSE_EXEC_QUEUES) {
for (i = 0; i < n_exec_queues; i++)
xe_exec_queue_destroy(fd, exec_queues[i]);
}
drm_close_driver(fd);
/* FIXME: wait for idle */
usleep(150000);
return;
}
for (i = 1; i < n_execs; i++) {
int64_t timeout = 3 * NSEC_PER_SEC;
int err;
err = __xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
exec_queues[i % n_exec_queues], &timeout);
if (flags & GT_RESET || flags & CAT_ERROR)
/* exec races with reset: may return -EIO or complete */
igt_assert(err == -EIO || !err);
else
igt_assert_eq(err, 0);
}
sync[0].addr = to_user_pointer(&data[0].vm_sync);
xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, 3 * NSEC_PER_SEC);
if (!(flags & GT_RESET)) {
for (i = 1; i < n_execs; i++)
igt_assert_eq(data[i].data, 0xc0ffee);
}
for (i = 0; i < n_exec_queues; i++)
xe_exec_queue_destroy(fd, exec_queues[i]);
munmap(data, bo_size);
gem_close(fd, bo);
xe_vm_destroy(fd, vm);
}
struct gt_thread_data {
pthread_t thread;
pthread_mutex_t *mutex;
pthread_cond_t *cond;
int fd;
int gt;
int *go;
int *exit;
int *num_reset;
bool do_reset;
};
static void do_resets(struct gt_thread_data *t)
{
while (!*(t->exit)) {
usleep(250000); /* 250 ms */
(*t->num_reset)++;
xe_force_gt_reset_async(t->fd, t->gt);
}
}
static void submit_jobs(struct gt_thread_data *t)
{
int fd = t->fd;
uint32_t vm = xe_vm_create(fd, 0, 0);
uint64_t addr = 0x1a0000;
size_t bo_size = xe_bb_size(fd, SZ_4K);
uint32_t bo;
uint32_t *data;
bo = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, 0),
DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
data = xe_bo_map(fd, bo, bo_size);
data[0] = MI_BATCH_BUFFER_END;
xe_vm_bind_sync(fd, vm, bo, 0, addr, bo_size);
while (!*(t->exit)) {
struct drm_xe_engine_class_instance instance = {
.engine_class = DRM_XE_ENGINE_CLASS_COPY,
.engine_instance = 0,
.gt_id = 0,
};
struct drm_xe_exec exec = {
.address = addr,
.num_batch_buffer = 1,
};
int ret;
/* GuC IDs can get exhausted */
ret = __xe_exec_queue_create(fd, vm, 1, 1, &instance, 0, &exec.exec_queue_id);
if (ret)
continue;
xe_exec(fd, &exec);
xe_exec_queue_destroy(fd, exec.exec_queue_id);
}
munmap(data, bo_size);
gem_close(fd, bo);
xe_vm_destroy(fd, vm);
}
static void *gt_reset_thread(void *data)
{
struct gt_thread_data *t = data;
pthread_mutex_lock(t->mutex);
while (*t->go == 0)
pthread_cond_wait(t->cond, t->mutex);
pthread_mutex_unlock(t->mutex);
if (t->do_reset)
do_resets(t);
else
submit_jobs(t);
return NULL;
}
/**
* SUBTEST: gt-reset-stress
* Description: Stress GT reset
* Test category: stress test
*
*/
static void
gt_reset(int fd, int n_threads, int n_sec)
{
struct gt_thread_data *threads;
pthread_mutex_t mutex;
pthread_cond_t cond;
int go = 0, exit = 0, num_reset = 0, i;
threads = calloc(n_threads, sizeof(struct gt_thread_data));
igt_assert(threads);
pthread_mutex_init(&mutex, 0);
pthread_cond_init(&cond, 0);
for (i = 0; i < n_threads; ++i) {
threads[i].mutex = &mutex;
threads[i].cond = &cond;
threads[i].fd = fd;
threads[i].gt = 0;
threads[i].go = &go;
threads[i].exit = &exit;
threads[i].num_reset = &num_reset;
threads[i].do_reset = (i == 0);
pthread_create(&threads[i].thread, 0, gt_reset_thread,
&threads[i]);
}
pthread_mutex_lock(&mutex);
go = 1;
pthread_cond_broadcast(&cond);
pthread_mutex_unlock(&mutex);
sleep(n_sec);
exit = 1;
for (i = 0; i < n_threads; i++)
pthread_join(threads[i].thread, NULL);
igt_info("number of resets %d\n", num_reset);
free(threads);
}
/**
* SUBTEST: gt-mocs-reset
* Description: Validate mocs register contents over GT reset
* Test category: mocs
*
*/
static void
gt_mocs_reset(int fd, int gt)
{
char path[256];
char *mocs_content_pre, *mocs_contents_post;
sprintf(path, "gt%d/mocs", gt);
igt_require_f(igt_debugfs_exists(fd, path, O_RDONLY),
"Failed to open required debugfs entry: %s\n", path);
/* Mocs debugfs contents before and after GT reset.
* Allocate memory to store 10k characters sufficient enough
* to store global mocs and lncf mocs data.
*/
mocs_content_pre = (char *)malloc(10000 * sizeof(char));
mocs_contents_post = (char *)malloc(10000 * sizeof(char));
igt_assert(mocs_content_pre);
igt_assert(mocs_contents_post);
igt_debugfs_dump(fd, path);
igt_debugfs_read(fd, path, mocs_content_pre);
xe_force_gt_reset_sync(fd, gt);
igt_assert(igt_debugfs_exists(fd, path, O_RDONLY));
igt_debugfs_dump(fd, path);
igt_debugfs_read(fd, path, mocs_contents_post);
igt_assert(strcmp(mocs_content_pre, mocs_contents_post) == 0);
free(mocs_content_pre);
free(mocs_contents_post);
}
igt_main
{
struct drm_xe_engine_class_instance *hwe;
const struct section {
const char *name;
unsigned int flags;
} sections[] = {
{ "virtual", VIRTUAL },
{ "parallel", PARALLEL },
{ NULL },
};
int gt;
int class;
int fd;
igt_fixture
fd = drm_open_driver(DRIVER_XE);
igt_subtest("spin")
xe_for_each_engine(fd, hwe)
test_spin(fd, hwe, 0);
igt_subtest("spin-signaled")
xe_for_each_engine(fd, hwe)
test_spin(fd, hwe, SYNC_OBJ_SIGNALED);
igt_subtest("cat-error")
xe_for_each_engine(fd, hwe)
xe_legacy_test_mode(fd, hwe, 2, 2, CAT_ERROR,
LEGACY_MODE_ADDR, false);
igt_subtest("gt-reset")
xe_for_each_engine(fd, hwe)
xe_legacy_test_mode(fd, hwe, 2, 2, GT_RESET,
LEGACY_MODE_ADDR, false);
igt_subtest("close-fd-no-exec")
xe_for_each_engine(fd, hwe)
xe_legacy_test_mode(-1, hwe, 16, 0, CLOSE_FD,
LEGACY_MODE_ADDR, false);
igt_subtest("close-fd")
xe_for_each_engine(fd, hwe)
xe_legacy_test_mode(-1, hwe, 16, 256, CLOSE_FD,
LEGACY_MODE_ADDR, false);
igt_subtest("close-execqueues-close-fd")
xe_for_each_engine(fd, hwe)
xe_legacy_test_mode(-1, hwe, 16, 256, CLOSE_FD |
CLOSE_EXEC_QUEUES,
LEGACY_MODE_ADDR, false);
igt_subtest("cm-cat-error")
xe_for_each_engine(fd, hwe)
test_compute_mode(fd, hwe, 2, 2, CAT_ERROR);
igt_subtest("cm-gt-reset")
xe_for_each_engine(fd, hwe)
test_compute_mode(fd, hwe, 2, 2, GT_RESET);
igt_subtest("cm-close-fd-no-exec")
xe_for_each_engine(fd, hwe)
test_compute_mode(-1, hwe, 16, 0, CLOSE_FD);
igt_subtest("cm-close-fd")
xe_for_each_engine(fd, hwe)
test_compute_mode(-1, hwe, 16, 256, CLOSE_FD);
igt_subtest("cm-close-execqueues-close-fd")
xe_for_each_engine(fd, hwe)
test_compute_mode(-1, hwe, 16, 256, CLOSE_FD |
CLOSE_EXEC_QUEUES);
for (const struct section *s = sections; s->name; s++) {
igt_subtest_f("%s-cat-error", s->name)
xe_for_each_gt(fd, gt)
xe_for_each_engine_class(class)
test_balancer(fd, gt, class, XE_MAX_ENGINE_INSTANCE + 1,
XE_MAX_ENGINE_INSTANCE + 1,
CAT_ERROR | s->flags);
igt_subtest_f("%s-gt-reset", s->name)
xe_for_each_gt(fd, gt)
xe_for_each_engine_class(class)
test_balancer(fd, gt, class, XE_MAX_ENGINE_INSTANCE + 1,
XE_MAX_ENGINE_INSTANCE + 1,
GT_RESET | s->flags);
igt_subtest_f("%s-close-fd-no-exec", s->name)
xe_for_each_gt(fd, gt)
xe_for_each_engine_class(class)
test_balancer(-1, gt, class, 16, 0,
CLOSE_FD | s->flags);
igt_subtest_f("%s-close-fd", s->name)
xe_for_each_gt(fd, gt)
xe_for_each_engine_class(class)
test_balancer(-1, gt, class, 16, 256,
CLOSE_FD | s->flags);
igt_subtest_f("%s-close-execqueues-close-fd", s->name)
xe_for_each_gt(fd, gt)
xe_for_each_engine_class(class)
test_balancer(-1, gt, class, 16, 256, CLOSE_FD |
CLOSE_EXEC_QUEUES | s->flags);
}
igt_subtest("gt-reset-stress")
gt_reset(fd, 4, 1);
igt_subtest("gt-mocs-reset")
xe_for_each_gt(fd, gt)
gt_mocs_reset(fd, gt);
igt_fixture
drm_close_driver(fd);
}
|