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
|
/*
* Copyright © 2017 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.
*/
#include "i915/gem.h"
#include "i915/gem_create.h"
#include "igt.h"
#include "igt_dummyload.h"
#include "igt_types.h"
/**
* TEST: gem ctx isolation
* Category: Core
* Mega feature: General Core features
* Sub-category: Security
* Functionality: priv/non-priv registers
* Feature: context
* Test category: GEM_Legacy
*
* SUBTEST: clean
*
* SUBTEST: dirty-create
*
* SUBTEST: dirty-switch
*
* SUBTEST: nonpriv
*
* SUBTEST: nonpriv-switch
*
* SUBTEST: preservation
*
* SUBTEST: preservation-S3
*
* SUBTEST: preservation-S4
*
* SUBTEST: preservation-reset
*
*/
/* MAX_REG must be greater than the maximum register address. */
#define MAX_REG 0x400000
#define NUM_REGS (MAX_REG / sizeof(uint32_t))
#define PAGE_ALIGN(x) ALIGN(x, 4096)
#define DIRTY1 0x1
#define DIRTY2 0x2
#define RESET 0x4
#define ENGINE(x, y) BIT(4*(x) + (y))
enum {
RCS0 = ENGINE(I915_ENGINE_CLASS_RENDER, 0),
BCS0 = ENGINE(I915_ENGINE_CLASS_COPY, 0),
VCS0 = ENGINE(I915_ENGINE_CLASS_VIDEO, 0),
VCS1 = ENGINE(I915_ENGINE_CLASS_VIDEO, 1),
VCS2 = ENGINE(I915_ENGINE_CLASS_VIDEO, 2),
VCS3 = ENGINE(I915_ENGINE_CLASS_VIDEO, 3),
VECS0 = ENGINE(I915_ENGINE_CLASS_VIDEO_ENHANCE, 0),
};
#define ALL ~0u
#define GEN_RANGE(x, y) ((ALL >> (32 - (y - x + 1))) << x)
#define GEN4 (ALL << 4)
#define GEN5 (ALL << 5)
#define GEN6 (ALL << 6)
#define GEN7 (ALL << 7)
#define GEN8 (ALL << 8)
#define GEN9 (ALL << 9)
#define GEN10 (ALL << 10)
#define GEN11 (ALL << 11)
#define GEN12 (ALL << 12)
#define NOCTX 0
#define LAST_KNOWN_GEN 12
static const struct named_register {
const char *name;
unsigned int gen_mask; /* on which gen the register exists */
unsigned int engine_mask; /* preferred engine / powerwell */
uint32_t offset; /* address of register, from bottom of mmio bar */
uint32_t count;
uint32_t ignore_bits;
uint32_t write_mask; /* some registers bits do not exist */
bool masked;
bool relative;
} nonpriv_registers[] = {
{ "NOPID", NOCTX, RCS0, 0x2094 },
{ "MI_PREDICATE_RESULT_2", NOCTX, RCS0, 0x23bc },
{
"INSTPM",
GEN6, RCS0, 0x20c0,
.ignore_bits = BIT(8) /* ro counter */,
.write_mask = BIT(8) /* rsvd varies between gen */,
.masked = true,
},
{ "IA_VERTICES_COUNT", GEN4, RCS0, 0x2310, 2 },
{ "IA_PRIMITIVES_COUNT", GEN4, RCS0, 0x2318, 2 },
{ "VS_INVOCATION_COUNT", GEN4, RCS0, 0x2320, 2 },
{ "HS_INVOCATION_COUNT", GEN4, RCS0, 0x2300, 2 },
{ "DS_INVOCATION_COUNT", GEN4, RCS0, 0x2308, 2 },
{ "GS_INVOCATION_COUNT", GEN4, RCS0, 0x2328, 2 },
{ "GS_PRIMITIVES_COUNT", GEN4, RCS0, 0x2330, 2 },
{ "CL_INVOCATION_COUNT", GEN4, RCS0, 0x2338, 2 },
{ "CL_PRIMITIVES_COUNT", GEN4, RCS0, 0x2340, 2 },
{ "PS_INVOCATION_COUNT_0", GEN4, RCS0, 0x22c8, 2, .write_mask = ~0x3 },
{ "PS_DEPTH_COUNT_0", GEN4, RCS0, 0x22d8, 2 },
{ "GPUGPU_DISPATCHDIMX", GEN8, RCS0, 0x2500 },
{ "GPUGPU_DISPATCHDIMY", GEN8, RCS0, 0x2504 },
{ "GPUGPU_DISPATCHDIMZ", GEN8, RCS0, 0x2508 },
{ "MI_PREDICATE_SRC0", GEN8, RCS0, 0x2400, 2 },
{ "MI_PREDICATE_SRC1", GEN8, RCS0, 0x2408, 2 },
{ "MI_PREDICATE_DATA", GEN8, RCS0, 0x2410, 2 },
{ "MI_PRED_RESULT", GEN8, RCS0, 0x2418, .write_mask = 0x1 },
{ "3DPRIM_END_OFFSET", GEN6, RCS0, 0x2420 },
{ "3DPRIM_START_VERTEX", GEN6, RCS0, 0x2430 },
{ "3DPRIM_VERTEX_COUNT", GEN6, RCS0, 0x2434 },
{ "3DPRIM_INSTANCE_COUNT", GEN6, RCS0, 0x2438 },
{ "3DPRIM_START_INSTANCE", GEN6, RCS0, 0x243c },
{ "3DPRIM_BASE_VERTEX", GEN6, RCS0, 0x2440 },
{ "GPGPU_THREADS_DISPATCHED", GEN8, RCS0, 0x2290, 2 },
{ "PS_INVOCATION_COUNT_1", GEN8, RCS0, 0x22f0, 2, .write_mask = ~0x3 },
{ "PS_DEPTH_COUNT_1", GEN8, RCS0, 0x22f8, 2 },
{ "BB_OFFSET", GEN8, RCS0, 0x2158, .ignore_bits = 0x7 },
{ "MI_PREDICATE_RESULT_1", GEN8, RCS0, 0x241c },
{ "OA_CTX_CONTROL", GEN8, RCS0, 0x2360 },
{ "OACTXID", GEN8, RCS0, 0x2364 },
{ "PS_INVOCATION_COUNT_2", GEN8, RCS0, 0x2448, 2, .write_mask = ~0x3 },
{ "PS_DEPTH_COUNT_2", GEN8, RCS0, 0x2450, 2 },
{ "Cache_Mode_0", GEN7, RCS0, 0x7000, .masked = true,
/*
* bit8 is "Depth Relate Cache Pipelined Flush Disable",
* set this to enable slow mode, and the test catches
* "GPU hung" on DG2, so mask off to poison this bit.
*/
.write_mask = ~0x100 },
{ "Cache_Mode_1", GEN7, RCS0, 0x7004, .masked = true },
{ "GT_MODE", GEN8, RCS0, 0x7008, .masked = true },
{ "L3_Config", GEN_RANGE(8, 11), RCS0, 0x7034 },
{ "TD_CTL", GEN_RANGE(8, 11), RCS0, 0xe400, .write_mask = 0xffff },
{ "TD_CTL2", GEN_RANGE(8, 11), RCS0, 0xe404 },
{ "SO_NUM_PRIMS_WRITTEN0", GEN6, RCS0, 0x5200, 2 },
{ "SO_NUM_PRIMS_WRITTEN1", GEN6, RCS0, 0x5208, 2 },
{ "SO_NUM_PRIMS_WRITTEN2", GEN6, RCS0, 0x5210, 2 },
{ "SO_NUM_PRIMS_WRITTEN3", GEN6, RCS0, 0x5218, 2 },
{ "SO_PRIM_STORAGE_NEEDED0", GEN6, RCS0, 0x5240, 2 },
{ "SO_PRIM_STORAGE_NEEDED1", GEN6, RCS0, 0x5248, 2 },
{ "SO_PRIM_STORAGE_NEEDED2", GEN6, RCS0, 0x5250, 2 },
{ "SO_PRIM_STORAGE_NEEDED3", GEN6, RCS0, 0x5258, 2 },
{ "SO_WRITE_OFFSET0", GEN7, RCS0, 0x5280, .write_mask = ~0x3 },
{ "SO_WRITE_OFFSET1", GEN7, RCS0, 0x5284, .write_mask = ~0x3 },
{ "SO_WRITE_OFFSET2", GEN7, RCS0, 0x5288, .write_mask = ~0x3 },
{ "SO_WRITE_OFFSET3", GEN7, RCS0, 0x528c, .write_mask = ~0x3 },
{ "OA_CONTROL", NOCTX, RCS0, 0x2b00 },
{ "PERF_CNT_1", NOCTX, RCS0, 0x91b8, 2 },
{ "PERF_CNT_2", NOCTX, RCS0, 0x91c0, 2 },
{ "CTX_PREEMPT", NOCTX /* GEN10 */, RCS0, 0x2248 },
{ "CS_CHICKEN1", GEN11, RCS0, 0x2580, .masked = true },
/* Privileged (enabled by w/a + FORCE_TO_NONPRIV) */
{ "CTX_PREEMPT", NOCTX /* GEN9 */, RCS0, 0x2248 },
{ "CS_CHICKEN1", GEN_RANGE(9, 10), RCS0, 0x2580, .masked = true },
{ "COMMON_SLICE_CHICKEN2", GEN_RANGE(9, 9), RCS0, 0x7014, .masked = true },
{ "HDC_CHICKEN1", GEN_RANGE(9, 10), RCS0, 0x7304, .masked = true },
{ "SLICE_COMMON_ECO_CHICKEN1", GEN_RANGE(11, 11) /* + glk */, RCS0, 0x731c, .masked = true },
{ "L3SQREG4", NOCTX /* GEN9:skl,kbl */, RCS0, 0xb118, .write_mask = ~0x1ffff0 },
{ "HALF_SLICE_CHICKEN7", GEN_RANGE(11, 11), RCS0, 0xe194, .masked = true },
{ "SAMPLER_MODE", GEN_RANGE(11, 11), RCS0, 0xe18c, .masked = true },
{ "BCS_SWCTRL", GEN8, BCS0, 0x22200, .write_mask = 0x3, .masked = true },
{ "MFC_VDBOX1", NOCTX, VCS0, 0x12800, 64 },
{ "MFC_VDBOX2", NOCTX, VCS1, 0x1c800, 64 },
{ "xCS_GPR", GEN9, ALL, 0x600, 32, .relative = true },
{}
}, ignore_registers[] = {
{ "RCS timestamp", GEN6, ~0u, 0x2358 },
{ "BCS timestamp", GEN7, ~0u, 0x22358 },
{ "xCS timestamp", GEN8, ALL, 0x358, .relative = true },
/* huc read only */
{ "BSD 0x2000", GEN11, ALL, 0x2000, .relative = true },
{ "BSD 0x2014", GEN11, ALL, 0x2014, .relative = true },
{ "BSD 0x23b0", GEN11, ALL, 0x23b0, .relative = true },
{}
};
static const char *
register_name(uint32_t offset, uint32_t mmio_base, char *buf, size_t len)
{
for (const struct named_register *r = nonpriv_registers; r->name; r++) {
unsigned int width = r->count ? 4*r->count : 4;
uint32_t base;
base = r->offset;
if (r->relative)
base += mmio_base;
if (offset >= base && offset < base + width) {
if (r->count <= 1)
return r->name;
snprintf(buf, len, "%s[%d]",
r->name, (offset - base) / 4);
return buf;
}
}
return "unknown";
}
static const struct named_register *
lookup_register(uint32_t offset, uint32_t mmio_base)
{
for (const struct named_register *r = nonpriv_registers; r->name; r++) {
unsigned int width = r->count ? 4*r->count : 4;
uint32_t base;
base = r->offset;
if (r->relative)
base += mmio_base;
if (offset >= base && offset < base + width)
return r;
}
return NULL;
}
static bool ignore_register(uint32_t offset, uint32_t mmio_base)
{
for (const struct named_register *r = ignore_registers; r->name; r++) {
unsigned int width = r->count ? 4*r->count : 4;
uint32_t base;
base = r->offset;
if (r->relative)
base += mmio_base;
if (offset >= base && offset < base + width)
return true;
}
return false;
}
static void tmpl_regs(int fd,
const struct intel_execution_engine2 *e,
uint32_t handle,
uint32_t value)
{
const unsigned int gen_bit = 1 << intel_gen(intel_get_drm_devid(fd));
const unsigned int engine_bit = ENGINE(e->class, e->instance);
const uint32_t mmio_base = gem_engine_mmio_base(fd, e->name);
unsigned int regs_size;
uint32_t *regs;
regs_size = NUM_REGS * sizeof(uint32_t);
regs_size = PAGE_ALIGN(regs_size);
regs = gem_mmap__cpu(fd, handle, 0, regs_size, PROT_WRITE);
gem_set_domain(fd, handle,
I915_GEM_DOMAIN_CPU, I915_GEM_DOMAIN_CPU);
for (const struct named_register *r = nonpriv_registers; r->name; r++) {
uint32_t offset;
if (!(r->engine_mask & engine_bit))
continue;
if (!(r->gen_mask & gen_bit))
continue;
if (r->relative && !mmio_base)
continue;
offset = r->offset;
if (r->relative)
offset += mmio_base;
for (unsigned count = r->count ?: 1; count--; offset += 4) {
uint32_t x = value;
if (r->write_mask)
x &= r->write_mask;
if (r->masked)
x &= 0xffff;
regs[offset/sizeof(*regs)] = x;
}
}
munmap(regs, regs_size);
}
static uint32_t read_regs(int fd,
uint64_t ahnd,
const intel_ctx_t *ctx,
const struct intel_execution_engine2 *e,
unsigned int flags)
{
const unsigned int gen = intel_gen(intel_get_drm_devid(fd));
const unsigned int gen_bit = 1 << gen;
const unsigned int engine_bit = ENGINE(e->class, e->instance);
const uint32_t mmio_base = gem_engine_mmio_base(fd, e->name);
const bool r64b = gen >= 8;
struct drm_i915_gem_exec_object2 obj[2];
struct drm_i915_gem_relocation_entry *reloc;
struct drm_i915_gem_execbuffer2 execbuf;
unsigned int regs_size, batch_size, n;
uint32_t *batch, *b;
reloc = calloc(NUM_REGS, sizeof(*reloc));
igt_assert(reloc);
regs_size = NUM_REGS * sizeof(uint32_t);
regs_size = PAGE_ALIGN(regs_size);
batch_size = NUM_REGS * 4 * sizeof(uint32_t) + 4;
batch_size = PAGE_ALIGN(batch_size);
memset(obj, 0, sizeof(obj));
obj[0].handle = gem_create(fd, regs_size);
obj[1].handle = gem_create(fd, batch_size);
obj[1].relocs_ptr = to_user_pointer(reloc);
if (ahnd) {
obj[0].offset = get_offset(ahnd, obj[0].handle, regs_size, 0);
obj[0].flags |= EXEC_OBJECT_PINNED | EXEC_OBJECT_WRITE;
obj[1].offset = get_offset(ahnd, obj[1].handle, batch_size, 0);
obj[1].flags |= EXEC_OBJECT_PINNED;
}
b = batch = gem_mmap__cpu(fd, obj[1].handle, 0, batch_size, PROT_WRITE);
gem_set_domain(fd, obj[1].handle,
I915_GEM_DOMAIN_CPU, I915_GEM_DOMAIN_CPU);
n = 0;
for (const struct named_register *r = nonpriv_registers; r->name; r++) {
uint32_t offset;
if (!(r->engine_mask & engine_bit))
continue;
if (!(r->gen_mask & gen_bit))
continue;
if (r->relative && !mmio_base)
continue;
offset = r->offset;
if (r->relative)
offset += mmio_base;
for (unsigned count = r->count ?: 1; count--; offset += 4) {
*b++ = 0x24 << 23 | (1 + r64b); /* SRM */
*b++ = offset;
reloc[n].target_handle = obj[0].handle;
reloc[n].presumed_offset = 0;
reloc[n].offset = (b - batch) * sizeof(*b);
reloc[n].delta = offset;
reloc[n].read_domains = I915_GEM_DOMAIN_RENDER;
reloc[n].write_domain = I915_GEM_DOMAIN_RENDER;
*b++ = obj[0].offset + offset;
if (r64b)
*b++ = (obj[0].offset + offset) >> 32;
n++;
}
}
obj[1].relocation_count = !ahnd ? n : 0;
*b++ = MI_BATCH_BUFFER_END;
munmap(batch, batch_size);
memset(&execbuf, 0, sizeof(execbuf));
execbuf.buffers_ptr = to_user_pointer(obj);
execbuf.buffer_count = 2;
execbuf.flags = e->flags;
execbuf.rsvd1 = ctx->id;
gem_execbuf(fd, &execbuf);
gem_close(fd, obj[1].handle);
free(reloc);
put_offset(ahnd, obj[0].handle);
put_offset(ahnd, obj[1].handle);
return obj[0].handle;
}
static void write_regs(int fd, uint64_t ahnd,
const intel_ctx_t *ctx,
const struct intel_execution_engine2 *e,
unsigned int flags,
uint32_t value)
{
const unsigned int gen_bit = 1 << intel_gen(intel_get_drm_devid(fd));
const unsigned int engine_bit = ENGINE(e->class, e->instance);
const uint32_t mmio_base = gem_engine_mmio_base(fd, e->name);
struct drm_i915_gem_exec_object2 obj;
struct drm_i915_gem_execbuffer2 execbuf;
unsigned int batch_size;
uint32_t *batch, *b;
batch_size = NUM_REGS * 3 * sizeof(uint32_t) + 4;
batch_size = PAGE_ALIGN(batch_size);
memset(&obj, 0, sizeof(obj));
obj.handle = gem_create(fd, batch_size);
b = batch = gem_mmap__cpu(fd, obj.handle, 0, batch_size, PROT_WRITE);
gem_set_domain(fd, obj.handle,
I915_GEM_DOMAIN_CPU, I915_GEM_DOMAIN_CPU);
for (const struct named_register *r = nonpriv_registers; r->name; r++) {
uint32_t offset;
if (!(r->engine_mask & engine_bit))
continue;
if (!(r->gen_mask & gen_bit))
continue;
if (r->relative && !mmio_base)
continue;
offset = r->offset;
if (r->relative)
offset += mmio_base;
for (unsigned count = r->count ?: 1; count--; offset += 4) {
uint32_t x = value;
if (r->write_mask)
x &= r->write_mask;
if (r->masked)
x |= 0xffffu << 16;
*b++ = 0x22 << 23 | 1; /* LRI */
*b++ = offset;
*b++ = x;
}
}
*b++ = MI_BATCH_BUFFER_END;
munmap(batch, batch_size);
memset(&execbuf, 0, sizeof(execbuf));
execbuf.buffers_ptr = to_user_pointer(&obj);
execbuf.buffer_count = 1;
execbuf.flags = e->flags;
execbuf.rsvd1 = ctx->id;
if (ahnd) {
obj.flags |= EXEC_OBJECT_PINNED;
obj.offset = get_offset(ahnd, obj.handle, batch_size, 0);
}
gem_execbuf(fd, &execbuf);
gem_close(fd, obj.handle);
put_offset(ahnd, obj.handle);
}
static void restore_regs(int fd,
uint64_t ahnd,
const intel_ctx_t *ctx,
const struct intel_execution_engine2 *e,
unsigned int flags,
uint32_t regs)
{
const unsigned int gen = intel_gen(intel_get_drm_devid(fd));
const unsigned int gen_bit = 1 << gen;
const unsigned int engine_bit = ENGINE(e->class, e->instance);
const uint32_t mmio_base = gem_engine_mmio_base(fd, e->name);
const bool r64b = gen >= 8;
struct drm_i915_gem_exec_object2 obj[2];
struct drm_i915_gem_execbuffer2 execbuf;
struct drm_i915_gem_relocation_entry *reloc;
unsigned int batch_size, n;
uint32_t *batch, *b;
uint32_t regs_size = NUM_REGS * sizeof(uint32_t);
if (gen < 7) /* no LRM */
return;
reloc = calloc(NUM_REGS, sizeof(*reloc));
igt_assert(reloc);
batch_size = NUM_REGS * 3 * sizeof(uint32_t) + 4;
batch_size = PAGE_ALIGN(batch_size);
memset(obj, 0, sizeof(obj));
obj[0].handle = regs;
obj[1].handle = gem_create(fd, batch_size);
obj[1].relocs_ptr = to_user_pointer(reloc);
if (ahnd) {
obj[0].offset = get_offset(ahnd, obj[0].handle, regs_size, 0);
obj[0].flags |= EXEC_OBJECT_PINNED | EXEC_OBJECT_WRITE;
obj[1].offset = get_offset(ahnd, obj[1].handle, batch_size, 0);
obj[1].flags |= EXEC_OBJECT_PINNED;
}
b = batch = gem_mmap__cpu(fd, obj[1].handle, 0, batch_size, PROT_WRITE);
gem_set_domain(fd, obj[1].handle,
I915_GEM_DOMAIN_CPU, I915_GEM_DOMAIN_CPU);
n = 0;
for (const struct named_register *r = nonpriv_registers; r->name; r++) {
uint32_t offset;
if (!(r->engine_mask & engine_bit))
continue;
if (!(r->gen_mask & gen_bit))
continue;
if (r->relative && !mmio_base)
continue;
offset = r->offset;
if (r->relative)
offset += mmio_base;
for (unsigned count = r->count ?: 1; count--; offset += 4) {
*b++ = 0x29 << 23 | (1 + r64b); /* LRM */
*b++ = offset;
reloc[n].target_handle = obj[0].handle;
reloc[n].presumed_offset = 0;
reloc[n].offset = (b - batch) * sizeof(*b);
reloc[n].delta = offset;
reloc[n].read_domains = I915_GEM_DOMAIN_RENDER;
reloc[n].write_domain = 0;
*b++ = obj[0].offset + offset;
if (r64b)
*b++ = (obj[0].offset + offset) >> 32;
n++;
}
}
obj[1].relocation_count = !ahnd ? n : 0;
*b++ = MI_BATCH_BUFFER_END;
munmap(batch, batch_size);
memset(&execbuf, 0, sizeof(execbuf));
execbuf.buffers_ptr = to_user_pointer(obj);
execbuf.buffer_count = 2;
execbuf.flags = e->flags;
execbuf.rsvd1 = ctx->id;
gem_execbuf(fd, &execbuf);
gem_close(fd, obj[1].handle);
put_offset(ahnd, obj[0].handle);
put_offset(ahnd, obj[1].handle);
}
__attribute__((unused))
static void dump_regs(int fd,
const struct intel_execution_engine2 *e,
unsigned int regs)
{
const unsigned int gen = intel_gen(intel_get_drm_devid(fd));
const unsigned int gen_bit = 1 << gen;
const unsigned int engine_bit = ENGINE(e->class, e->instance);
const uint32_t mmio_base = gem_engine_mmio_base(fd, e->name);
unsigned int regs_size;
uint32_t *out;
regs_size = NUM_REGS * sizeof(uint32_t);
regs_size = PAGE_ALIGN(regs_size);
out = gem_mmap__cpu(fd, regs, 0, regs_size, PROT_READ);
gem_set_domain(fd, regs, I915_GEM_DOMAIN_CPU, 0);
for (const struct named_register *r = nonpriv_registers; r->name; r++) {
uint32_t offset;
if (!(r->engine_mask & engine_bit))
continue;
if (!(r->gen_mask & gen_bit))
continue;
if (r->relative && !mmio_base)
continue;
offset = r->offset;
if (r->relative)
offset += mmio_base;
if (r->count <= 1) {
igt_debug("0x%04x (%s): 0x%08x\n",
offset, r->name, out[offset / 4]);
} else {
for (unsigned x = 0; x < r->count; x++)
igt_debug("0x%04x (%s[%d]): 0x%08x\n",
offset + 4 * x, r->name, x,
out[offset / 4 + x]);
}
}
munmap(out, regs_size);
}
static void compare_regs(int fd, const struct intel_execution_engine2 *e,
uint32_t A, uint32_t B, const char *who)
{
const uint32_t mmio_base = gem_engine_mmio_base(fd, e->name);
unsigned int num_errors;
unsigned int regs_size;
uint32_t *a, *b;
char buf[80];
regs_size = NUM_REGS * sizeof(uint32_t);
regs_size = PAGE_ALIGN(regs_size);
a = gem_mmap__cpu(fd, A, 0, regs_size, PROT_READ);
gem_set_domain(fd, A, I915_GEM_DOMAIN_CPU, 0);
b = gem_mmap__cpu(fd, B, 0, regs_size, PROT_READ);
gem_set_domain(fd, B, I915_GEM_DOMAIN_CPU, 0);
num_errors = 0;
for (unsigned int n = 0; n < NUM_REGS; n++) {
const struct named_register *r;
uint32_t offset = n * sizeof(uint32_t);
uint32_t mask;
if (a[n] == b[n])
continue;
if (ignore_register(offset, mmio_base))
continue;
mask = ~0u;
r = lookup_register(offset, mmio_base);
if (r && r->masked)
mask >>= 16;
if (r && r->ignore_bits)
mask &= ~r->ignore_bits;
if ((a[n] & mask) == (b[n] & mask))
continue;
igt_warn("Register 0x%04x (%s): A=%08x B=%08x\n",
offset,
register_name(offset, mmio_base, buf, sizeof(buf)),
a[n] & mask, b[n] & mask);
num_errors++;
}
munmap(b, regs_size);
munmap(a, regs_size);
igt_assert_f(num_errors == 0,
"%d registers mistached between %s.\n",
num_errors, who);
}
static void nonpriv(int fd, const intel_ctx_cfg_t *cfg,
const struct intel_execution_engine2 *e,
unsigned int flags)
{
static const uint32_t values[] = {
0x0,
0xffffffff,
0xcccccccc,
0x33333333,
0x55555555,
0xaaaaaaaa,
0xf0f00f0f,
0xa0a00303,
0x0505c0c0,
0xdeadbeef
};
unsigned int num_values = ARRAY_SIZE(values);
/* Sigh -- hsw: we need cmdparser access to our own registers! */
igt_skip_on(intel_gen(intel_get_drm_devid(fd)) < 8);
gem_quiescent_gpu(fd);
for (int v = 0; v < num_values; v++) {
igt_spin_t *spin = NULL;
const intel_ctx_t *ctx;
uint32_t regs[2], tmpl;
uint64_t ahnd;
ctx = intel_ctx_create(fd, cfg);
ahnd = get_reloc_ahnd(fd, ctx->id);
tmpl = read_regs(fd, ahnd, ctx, e, flags);
regs[0] = read_regs(fd, ahnd, ctx, e, flags);
tmpl_regs(fd, e, tmpl, values[v]);
spin = igt_spin_new(fd,
.ahnd = ahnd,
.ctx = ctx,
.engine = e->flags);
igt_debug("%s[%d]: Setting all registers to 0x%08x\n",
__func__, v, values[v]);
write_regs(fd, ahnd, ctx, e, flags, values[v]);
if (flags & DIRTY2) {
const intel_ctx_t *sw = intel_ctx_create(fd, &ctx->cfg);
uint64_t ahnd_sw = get_reloc_ahnd(fd, sw->id);
igt_spin_t *syncpt, *dirt;
/* Explicit sync to keep the switch between write/read */
syncpt = igt_spin_new(fd,
.ahnd = ahnd,
.ctx = ctx,
.engine = e->flags,
.flags = IGT_SPIN_FENCE_OUT);
dirt = igt_spin_new(fd,
.ahnd = ahnd_sw,
.ctx = sw,
.engine = e->flags,
.fence = syncpt->out_fence,
.flags = (IGT_SPIN_FENCE_IN |
IGT_SPIN_FENCE_OUT));
igt_spin_free(fd, syncpt);
syncpt = igt_spin_new(fd,
.ahnd = ahnd,
.ctx = ctx,
.engine = e->flags,
.fence = dirt->out_fence,
.flags = IGT_SPIN_FENCE_IN);
igt_spin_free(fd, dirt);
igt_spin_free(fd, syncpt);
intel_ctx_destroy(fd, sw);
put_ahnd(ahnd_sw);
}
regs[1] = read_regs(fd, ahnd, ctx, e, flags);
/*
* Restore the original register values before the HW idles.
* Or else it may never restart!
*/
restore_regs(fd, ahnd, ctx, e, flags, regs[0]);
igt_spin_free(fd, spin);
compare_regs(fd, e, tmpl, regs[1], "nonpriv read/writes");
for (int n = 0; n < ARRAY_SIZE(regs); n++)
gem_close(fd, regs[n]);
intel_ctx_destroy(fd, ctx);
gem_close(fd, tmpl);
put_ahnd(ahnd);
}
}
static void isolation(int fd, const intel_ctx_cfg_t *cfg,
const struct intel_execution_engine2 *e,
unsigned int flags)
{
static const uint32_t values[] = {
0x0,
0xffffffff,
0xcccccccc,
0x33333333,
0x55555555,
0xaaaaaaaa,
0xdeadbeef
};
unsigned int num_values =
flags & (DIRTY1 | DIRTY2) ? ARRAY_SIZE(values) : 1;
gem_quiescent_gpu(fd);
for (int v = 0; v < num_values; v++) {
igt_spin_t *spin = NULL;
const intel_ctx_t *ctx[2];
uint32_t regs[2], tmp;
uint64_t ahnd[2];
ctx[0] = intel_ctx_create(fd, cfg);
ahnd[0] = get_reloc_ahnd(fd, ctx[0]->id);
regs[0] = read_regs(fd, ahnd[0], ctx[0], e, flags);
spin = igt_spin_new(fd,
.ahnd = ahnd[0],
.ctx = ctx[0],
.engine = e->flags);
if (flags & DIRTY1) {
igt_debug("%s[%d]: Setting all registers of ctx 0 to 0x%08x\n",
__func__, v, values[v]);
write_regs(fd, ahnd[0], ctx[0], e, flags, values[v]);
}
/*
* We create and execute a new context, whilst the HW is
* occupied with the previous context (we should switch from
* the old to the new proto-context without idling, which could
* then load the powercontext). If all goes well, we only see
* the default values from this context, but if goes badly we
* see the corruption from the previous context instead!
*/
ctx[1] = intel_ctx_create(fd, cfg);
ahnd[1] = get_reloc_ahnd(fd, ctx[1]->id);
regs[1] = read_regs(fd, ahnd[1], ctx[1], e, flags);
if (flags & DIRTY2) {
igt_debug("%s[%d]: Setting all registers of ctx 1 to 0x%08x\n",
__func__, v, ~values[v]);
write_regs(fd, ahnd[1], ctx[1], e, flags, ~values[v]);
}
/*
* Restore the original register values before the HW idles.
* Or else it may never restart!
*/
tmp = read_regs(fd, ahnd[0], ctx[0], e, flags);
restore_regs(fd, ahnd[0], ctx[0], e, flags, regs[0]);
igt_spin_free(fd, spin);
if (!(flags & DIRTY1))
compare_regs(fd, e, regs[0], tmp,
"two reads of the same ctx");
compare_regs(fd, e, regs[0], regs[1], "two virgin contexts");
for (int n = 0; n < ARRAY_SIZE(ctx); n++) {
gem_close(fd, regs[n]);
intel_ctx_destroy(fd, ctx[n]);
put_ahnd(ahnd[n]);
}
gem_close(fd, tmp);
}
}
#define NOSLEEP (0 << 8)
#define S3_DEVICES (1 << 8)
#define S3 (2 << 8)
#define S4_DEVICES (3 << 8)
#define S4 (4 << 8)
#define SLEEP_MASK (0xf << 8)
static const intel_ctx_t *
create_reset_context(int i915, const intel_ctx_cfg_t *cfg)
{
const intel_ctx_t *ctx = intel_ctx_create(i915, cfg);
struct drm_i915_gem_context_param param = {
.ctx_id = ctx->id,
.param = I915_CONTEXT_PARAM_BANNABLE,
};
gem_context_set_param(i915, ¶m);
return ctx;
}
static void inject_reset_context(int fd, const intel_ctx_cfg_t *cfg,
const struct intel_execution_engine2 *e)
{
const intel_ctx_t *ctx = create_reset_context(fd, cfg);
uint64_t ahnd = get_reloc_ahnd(fd, ctx->id);
struct igt_spin_factory opts = {
.ahnd = ahnd,
.ctx = ctx,
.engine = e->flags,
.flags = IGT_SPIN_FAST,
};
igt_spin_t *spin;
/*
* Force a context switch before triggering the reset, or else
* we risk corrupting the target context and we can't blame the
* HW for screwing up if the context was already broken.
*/
if (gem_class_can_store_dword(fd, e->class))
opts.flags |= IGT_SPIN_POLL_RUN;
spin = __igt_spin_factory(fd, &opts);
if (igt_spin_has_poll(spin))
igt_spin_busywait_until_started(spin);
else
usleep(1000); /* better than nothing */
igt_force_gpu_reset(fd);
igt_spin_free(fd, spin);
intel_ctx_destroy(fd, ctx);
put_ahnd(ahnd);
}
static void preservation(int fd, const intel_ctx_cfg_t *cfg,
const struct intel_execution_engine2 *e,
unsigned int flags)
{
static const uint32_t values[] = {
0x0,
0xffffffff,
0xcccccccc,
0x33333333,
0x55555555,
0xaaaaaaaa,
0xdeadbeef
};
const unsigned int num_values = ARRAY_SIZE(values);
const intel_ctx_t *ctx[num_values + 1];
uint32_t regs[num_values + 1][2];
uint64_t ahnd[num_values + 1];
igt_spin_t *spin;
gem_quiescent_gpu(fd);
ctx[num_values] = intel_ctx_create(fd, cfg);
ahnd[num_values] = get_reloc_ahnd(fd, ctx[num_values]->id);
spin = igt_spin_new(fd,
.ahnd = ahnd[num_values],
.ctx = ctx[num_values],
.engine = e->flags);
regs[num_values][0] = read_regs(fd, ahnd[num_values], ctx[num_values],
e, flags);
for (int v = 0; v < num_values; v++) {
ctx[v] = intel_ctx_create(fd, cfg);
ahnd[v] = get_reloc_ahnd(fd, ctx[v]->id);
write_regs(fd, ahnd[v], ctx[v], e, flags, values[v]);
regs[v][0] = read_regs(fd, ahnd[v], ctx[v], e, flags);
}
gem_close(fd, read_regs(fd, ahnd[num_values], ctx[num_values], e, flags));
igt_spin_free(fd, spin);
if (flags & RESET)
inject_reset_context(fd, cfg, e);
switch (flags & SLEEP_MASK) {
case NOSLEEP:
break;
case S3_DEVICES:
igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
SUSPEND_TEST_DEVICES);
break;
case S3:
igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
SUSPEND_TEST_NONE);
break;
case S4_DEVICES:
igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
SUSPEND_TEST_DEVICES);
break;
case S4:
igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
SUSPEND_TEST_NONE);
break;
}
spin = igt_spin_new(fd,
.ahnd = ahnd[num_values],
.ctx = ctx[num_values],
.engine = e->flags);
for (int v = 0; v < num_values; v++)
regs[v][1] = read_regs(fd, ahnd[v], ctx[v], e, flags);
regs[num_values][1] = read_regs(fd, ahnd[num_values], ctx[num_values],
e, flags);
igt_spin_free(fd, spin);
for (int v = 0; v < num_values; v++) {
char buf[80];
snprintf(buf, sizeof(buf), "dirty %x context\n", values[v]);
compare_regs(fd, e, regs[v][0], regs[v][1], buf);
gem_close(fd, regs[v][0]);
gem_close(fd, regs[v][1]);
intel_ctx_destroy(fd, ctx[v]);
put_ahnd(ahnd[v]);
}
compare_regs(fd, e, regs[num_values][0], regs[num_values][1], "clean");
intel_ctx_destroy(fd, ctx[num_values]);
put_ahnd(ahnd[num_values]);
}
static unsigned int __has_context_isolation(int fd)
{
struct drm_i915_getparam gp;
int value = 0;
memset(&gp, 0, sizeof(gp));
gp.param = 50; /* I915_PARAM_HAS_CONTEXT_ISOLATION */
gp.value = &value;
igt_ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp);
errno = 0;
return value;
}
#define test_each_engine(e, i915, cfg, mask) \
for_each_ctx_cfg_engine(i915, cfg, e) \
for_each_if(mask & (1 << (e)->class)) \
igt_dynamic_f("%s", (e)->name)
igt_main
{
unsigned int has_context_isolation = 0;
const struct intel_execution_engine2 *e;
intel_ctx_cfg_t cfg;
igt_fd_t(i915);
igt_fixture {
int gen;
i915 = drm_open_driver(DRIVER_INTEL);
igt_require_gem(i915);
igt_require(gem_has_contexts(i915));
cfg = intel_ctx_cfg_all_physical(i915);
has_context_isolation = __has_context_isolation(i915);
igt_require(has_context_isolation);
gen = intel_gen(intel_get_drm_devid(i915));
igt_warn_on_f(gen > LAST_KNOWN_GEN,
"GEN not recognized! Test needs to be updated to run.\n");
igt_skip_on(gen > LAST_KNOWN_GEN);
}
igt_fixture {
igt_fork_hang_detector(i915);
}
igt_subtest_with_dynamic("nonpriv") {
test_each_engine(e, i915, &cfg, has_context_isolation)
nonpriv(i915, &cfg, e, 0);
}
igt_subtest_with_dynamic("nonpriv-switch") {
test_each_engine(e, i915, &cfg, has_context_isolation)
nonpriv(i915, &cfg, e, DIRTY2);
}
igt_subtest_with_dynamic("clean") {
test_each_engine(e, i915, &cfg, has_context_isolation)
isolation(i915, &cfg, e, 0);
}
igt_subtest_with_dynamic("dirty-create") {
test_each_engine(e, i915, &cfg, has_context_isolation)
isolation(i915, &cfg, e, DIRTY1);
}
igt_subtest_with_dynamic("dirty-switch") {
test_each_engine(e, i915, &cfg, has_context_isolation)
isolation(i915, &cfg, e, DIRTY2);
}
igt_subtest_with_dynamic("preservation") {
test_each_engine(e, i915, &cfg, has_context_isolation)
preservation(i915, &cfg, e, 0);
}
igt_subtest_with_dynamic("preservation-S3") {
test_each_engine(e, i915, &cfg, has_context_isolation)
preservation(i915, &cfg, e, S3);
}
igt_subtest_with_dynamic("preservation-S4") {
test_each_engine(e, i915, &cfg, has_context_isolation)
preservation(i915, &cfg, e, S4);
}
igt_fixture {
igt_stop_hang_detector();
}
igt_subtest_with_dynamic("preservation-reset") {
igt_hang_t hang = igt_allow_hang(i915, 0, 0);
test_each_engine(e, i915, &cfg, has_context_isolation)
preservation(i915, &cfg, e, RESET);
igt_disallow_hang(i915, hang);
}
}
|