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
|
/*
* Copyright © 2019 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 <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <signal.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include "igt_params.h"
#include "drmtest.h"
#include "i915/gem.h"
#include "i915/gem_context.h"
#include "i915/gem_engine_topology.h"
#include "intel_allocator.h"
#include "igt_debugfs.h"
#include "igt_dummyload.h"
#include "igt_sysfs.h"
#include "sw_sync.h"
/**
* TEST: sysfs heartbeat interval
* Category: Core
* Mega feature: SysMan
* Sub-category: SysMan tests
* Functionality: sysfs heartbeat
* Feature: SMI, cmd_submission
* Test category: SysMan
*
* SUBTEST: idempotent
* Description: Test to check whether the heartbeat parameter reports the values set.
*
* SUBTEST: invalid
* Description: Test to check if heartbeat parameter rejects any unrepresentable intervals.
*
* SUBTEST: long
*
* SUBTEST: mixed
* Description: Run a mixed workload with non-preemptable hogs that exceed the heartbeat, and quicker innocents. Inspect the fence status of each to verify that only the hogs are reset.
*
* SUBTEST: nopreempt
* Description: Test heartbeats with forced preemption disabled.
*
* SUBTEST: off
*
* SUBTEST: precise
* Description: Tests the heartbeats with preemption and heartbeat parameter enabled.
*/
#define ATTR "heartbeat_interval_ms"
#define RESET_TIMEOUT 1000 /* milliseconds, long enough for error capture */
static bool __enable_hangcheck(int dir, bool state)
{
return igt_sysfs_set(dir, "enable_hangcheck", state ? "1" : "0");
}
static void enable_hangcheck(int i915, bool state)
{
int dir;
dir = igt_params_open(i915);
if (dir < 0) /* no parameters, must be default! */
return;
__enable_hangcheck(dir, state);
close(dir);
}
static void set_attr(int engine, const char *attr, unsigned int value)
{
unsigned int saved = ~value;
igt_debug("set %s:%d\n", attr, value);
igt_require(igt_sysfs_printf(engine, attr, "%u", value) > 0);
igt_sysfs_scanf(engine, attr, "%u", &saved);
igt_assert_eq(saved, value);
}
static void set_heartbeat(int engine, unsigned int value)
{
set_attr(engine, ATTR, value);
}
static void set_preempt_timeout(int engine, unsigned int value)
{
set_attr(engine, "preempt_timeout_ms", value);
}
static int wait_for_reset(int fence)
{
/* Do a double wait to paper over scheduler fluctuations */
sync_fence_wait(fence, RESET_TIMEOUT);
return sync_fence_wait(fence, RESET_TIMEOUT);
}
static void test_idempotent(int i915, int engine)
{
unsigned int delays[] = { 1, 1000, 5000, 50000, 123456789 };
unsigned int saved;
/* Quick test that the property reports the values we set */
igt_assert(igt_sysfs_scanf(engine, ATTR, "%u", &saved) == 1);
igt_debug("Initial %s:%u\n", ATTR, saved);
for (int i = 0; i < ARRAY_SIZE(delays); i++)
set_heartbeat(engine, delays[i]);
set_heartbeat(engine, saved);
}
static void test_invalid(int i915, int engine)
{
unsigned int saved, delay;
/* Quick test that we reject any unrepresentable intervals */
igt_assert(igt_sysfs_scanf(engine, ATTR, "%u", &saved) == 1);
igt_debug("Initial %s:%u\n", ATTR, saved);
igt_sysfs_printf(engine, ATTR, "%llu", -1ull);
igt_sysfs_scanf(engine, ATTR, "%u", &delay);
igt_assert_eq(delay, saved);
igt_sysfs_printf(engine, ATTR, "%llu", 10ull << 32);
igt_sysfs_scanf(engine, ATTR, "%u", &delay);
igt_assert_eq(delay, saved);
}
static void set_unbannable(int i915, uint32_t ctx)
{
struct drm_i915_gem_context_param p = {
.ctx_id = ctx,
.param = I915_CONTEXT_PARAM_BANNABLE,
};
gem_context_set_param(i915, &p);
}
static const intel_ctx_t *
create_ctx(int i915, unsigned int class, unsigned int inst, int prio)
{
const intel_ctx_t *ctx = intel_ctx_create_for_engine(i915, class, inst);
set_unbannable(i915, ctx->id);
gem_context_set_priority(i915, ctx->id, prio);
return ctx;
}
static uint64_t __test_timeout(int i915, int engine, unsigned int timeout)
{
unsigned int class, inst;
struct timespec ts = {};
igt_spin_t *spin[2];
uint64_t elapsed;
const intel_ctx_t *ctx[2];
uint64_t ahnd[2];
igt_assert(igt_sysfs_scanf(engine, "class", "%u", &class) == 1);
igt_assert(igt_sysfs_scanf(engine, "instance", "%u", &inst) == 1);
set_heartbeat(engine, timeout);
ctx[0] = create_ctx(i915, class, inst, 1023);
ahnd[0] = get_reloc_ahnd(i915, ctx[0]->id);
spin[0] = igt_spin_new(i915, .ahnd = ahnd[0], .ctx = ctx[0],
.flags = (IGT_SPIN_NO_PREEMPTION |
IGT_SPIN_POLL_RUN |
IGT_SPIN_FENCE_OUT));
igt_spin_busywait_until_started(spin[0]);
ctx[1] = create_ctx(i915, class, inst, -1023);
ahnd[1] = get_reloc_ahnd(i915, ctx[1]->id);
igt_nsec_elapsed(&ts);
spin[1] = igt_spin_new(i915, .ahnd = ahnd[1], .ctx = ctx[1],
.flags = IGT_SPIN_POLL_RUN);
igt_spin_busywait_until_started(spin[1]);
elapsed = igt_nsec_elapsed(&ts);
igt_spin_free(i915, spin[1]);
igt_assert_eq(wait_for_reset(spin[0]->out_fence), 0);
igt_assert_eq(sync_fence_status(spin[0]->out_fence), -EIO);
igt_spin_free(i915, spin[0]);
intel_ctx_destroy(i915, ctx[1]);
intel_ctx_destroy(i915, ctx[0]);
put_ahnd(ahnd[1]);
put_ahnd(ahnd[0]);
gem_quiescent_gpu(i915);
return elapsed;
}
static void test_precise(int i915, int engine)
{
int delays[] = { 1, 50, 100, 500 };
unsigned int saved;
/*
* The heartbeat interval defines how long the kernel waits between
* checking on the status of the engines. It first sends down a
* heartbeat pulse, waits the interval and sees if the system managed
* to complete the pulse. If not, it gives a priority bump to the pulse
* and waits again. This is repeated until the priority cannot be bumped
* any more, and the system is declared hung.
*
* If we combine the preemptive pulse with forced preemption, we instead
* get a much faster hang detection. Thus in combination we can measure
* the system response time to reseting a hog as a measure of the
* heartbeat interval, and so confirm it matches our specification.
*/
set_preempt_timeout(engine, 1);
igt_assert(igt_sysfs_scanf(engine, ATTR, "%u", &saved) == 1);
igt_debug("Initial %s:%u\n", ATTR, saved);
gem_quiescent_gpu(i915);
for (int i = 0; i < ARRAY_SIZE(delays); i++) {
uint64_t elapsed;
elapsed = __test_timeout(i915, engine, delays[i]);
igt_info("%s:%d, elapsed=%.3fms[%d]\n", ATTR,
delays[i], elapsed * 1e-6,
(int)(elapsed / 1000 / 1000));
/*
* It takes a couple of missed heartbeats before we start
* terminating hogs, and a little bit of jiffie slack for
* scheduling at each step. 150ms should cover all of our
* sins and be useful tolerance.
*/
igt_assert_f(elapsed / 1000 / 1000 < 3 * delays[i] + 150,
"Heartbeat interval (and CPR) exceeded request!\n");
}
gem_quiescent_gpu(i915);
set_heartbeat(engine, saved);
}
static void test_nopreempt(int i915, int engine)
{
int delays[] = { 1, 50, 100, 500 };
unsigned int saved;
/*
* The same principle as test_precise(), except that forced preemption
* is disabled (or simply not supported by the platform). This time,
* it waits until the system misses a few heartbeat before doing a
* per-engine/full-gpu reset. As such it is less precise, but we
* can still estimate an upper bound for our specified heartbeat
* interval and verify the system conforms.
*/
/* Test heartbeats with forced preemption disabled */
set_preempt_timeout(engine, 0);
igt_assert(igt_sysfs_scanf(engine, ATTR, "%u", &saved) == 1);
igt_debug("Initial %s:%u\n", ATTR, saved);
gem_quiescent_gpu(i915);
for (int i = 0; i < ARRAY_SIZE(delays); i++) {
uint64_t elapsed;
elapsed = __test_timeout(i915, engine, delays[i]);
igt_info("%s:%d, elapsed=%.3fms[%d]\n", ATTR,
delays[i], elapsed * 1e-6,
(int)(elapsed / 1000 / 1000));
/*
* It takes a few missed heartbeats before we start
* terminating hogs, and a little bit of jiffie slack for
* scheduling at each step. 500ms should cover all of our
* sins (including debug dumps) and be useful tolerance.
*/
igt_assert_f(elapsed / 1000 / 1000 < 5 * delays[i] + 500,
"Heartbeat interval (and CPR) exceeded request!\n");
}
gem_quiescent_gpu(i915);
set_heartbeat(engine, saved);
}
static void client(int i915, int engine, int *ctl, int duration, int expect)
{
unsigned int class, inst;
unsigned long count = 0;
const intel_ctx_t *ctx;
uint64_t ahnd;
igt_assert(igt_sysfs_scanf(engine, "class", "%u", &class) == 1);
igt_assert(igt_sysfs_scanf(engine, "instance", "%u", &inst) == 1);
ctx = create_ctx(i915, class, inst, 0);
ahnd = get_reloc_ahnd(i915, ctx->id);
while (!READ_ONCE(*ctl)) {
unsigned int elapsed;
igt_spin_t *spin;
spin = igt_spin_new(i915, .ahnd = ahnd, .ctx = ctx,
.flags = (IGT_SPIN_NO_PREEMPTION |
IGT_SPIN_POLL_RUN |
IGT_SPIN_FENCE_OUT));
/* XXX we need more precise means of limiting the spinner */
igt_spin_busywait_until_started(spin);
if (sync_fence_status(spin->out_fence)) {
/* CPU too slow! */
igt_spin_free(i915, spin);
continue;
}
elapsed = igt_measured_usleep(duration * 1000);
igt_spin_end(spin);
sync_fence_wait(spin->out_fence, -1);
if (sync_fence_status(spin->out_fence) != expect)
kill(getppid(), SIGALRM); /* cancel parent's sleep */
igt_assert_f(sync_fence_status(spin->out_fence) == expect,
"%s client: elapsed: %.3fms, expected %d, got %d\n",
expect < 0 ? "Bad" : "Good", elapsed * 1e-3,
expect, sync_fence_status(spin->out_fence));
igt_spin_free(i915, spin);
count++;
}
intel_ctx_destroy(i915, ctx);
put_ahnd(ahnd);
igt_info("%s client completed %lu spins\n",
expect < 0 ? "Bad" : "Good", count);
}
static void sighandler(int sig)
{
}
static void __test_mixed(int i915, int engine,
int heartbeat,
int good,
int bad,
int duration)
{
unsigned int saved;
sighandler_t old;
int *shared;
/*
* Given two clients of which one is a hog, be sure we cleanly
* terminate the hog leaving the good client to run.
*/
igt_assert(igt_sysfs_scanf(engine, ATTR, "%u", &saved) == 1);
igt_debug("Initial %s:%u\n", ATTR, saved);
gem_quiescent_gpu(i915);
shared = mmap(NULL, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
igt_assert(shared != MAP_FAILED);
set_heartbeat(engine, heartbeat);
igt_fork(child, 1) /* good client */ {
intel_allocator_init();
client(i915, engine, shared, good, 1);
}
igt_fork(child, 1) /* bad client */ {
intel_allocator_init();
client(i915, engine, shared, bad, -EIO);
}
old = signal(SIGALRM, sighandler);
sleep(duration);
*shared = true;
igt_waitchildren();
munmap(shared, 4096);
signal(SIGALRM, old);
gem_quiescent_gpu(i915);
set_heartbeat(engine, saved);
}
static void test_mixed(int i915, int engine)
{
/*
* Hogs rarely run alone. Our hang detection must carefully wean
* out the hogs from the innocent clients. Thus we run a mixed workload
* with non-preemptable hogs that exceed the heartbeat, and quicker
* innocents. We inspect the fence status of each to verify that
* only the hogs are reset.
*/
set_preempt_timeout(engine, 25);
__test_mixed(i915, engine, 25, 10, 250, 5);
}
static void test_long(int i915, int engine)
{
/*
* Some clients relish being hogs, and demand that the system
* never do hangchecking. Never is hard to test, so instead we
* run over a day and verify that only the super hogs are reset.
*/
set_preempt_timeout(engine, 0);
__test_mixed(i915, engine,
60 * 1000, /* 60s */
60 * 1000, /* 60s */
300 * 1000, /* 5min */
24 * 3600 /* 24hours */);
}
static void test_off(int i915, int engine)
{
unsigned int class, inst;
unsigned int saved;
igt_spin_t *spin;
const intel_ctx_t *ctx;
uint64_t ahnd;
/*
* Some other clients request that there is never any interruption
* or jitter in their workload and so demand that the kernel never
* sends a heartbeat to steal precious cycles from their workload.
* Turn off the heartbeat and check that the workload is uninterrupted
* for 150s.
*/
igt_assert(igt_sysfs_scanf(engine, ATTR, "%u", &saved) == 1);
igt_debug("Initial %s:%u\n", ATTR, saved);
gem_quiescent_gpu(i915);
igt_assert(igt_sysfs_scanf(engine, "class", "%u", &class) == 1);
igt_assert(igt_sysfs_scanf(engine, "instance", "%u", &inst) == 1);
set_heartbeat(engine, 0);
ctx = create_ctx(i915, class, inst, 0);
ahnd = get_reloc_ahnd(i915, ctx->id);
spin = igt_spin_new(i915, .ahnd = ahnd, .ctx = ctx,
.flags = (IGT_SPIN_POLL_RUN |
IGT_SPIN_NO_PREEMPTION |
IGT_SPIN_FENCE_OUT));
igt_spin_busywait_until_started(spin);
for (int i = 0; i < 150; i++) {
igt_assert_eq(sync_fence_status(spin->out_fence), 0);
sleep(1);
}
set_heartbeat(engine, 1);
igt_assert_eq(sync_fence_wait(spin->out_fence, 500), 0);
igt_assert_eq(sync_fence_status(spin->out_fence), -EIO);
igt_spin_free(i915, spin);
gem_quiescent_gpu(i915);
set_heartbeat(engine, saved);
intel_ctx_destroy(i915, ctx);
put_ahnd(ahnd);
}
igt_main
{
static const struct {
const char *name;
void (*fn)(int, int);
} tests[] = {
{ "idempotent", test_idempotent },
{ "invalid", test_invalid },
{ "precise", test_precise },
{ "nopreempt", test_nopreempt },
{ "mixed", test_mixed },
{ "off", test_off },
{ "long", test_long },
{ }
};
int i915 = -1, engines = -1;
igt_fixture {
int sys;
i915 = drm_open_driver(DRIVER_INTEL);
igt_require_gem(i915);
igt_allow_hang(i915, 0, 0);
sys = igt_sysfs_open(i915);
igt_require(sys != -1);
engines = openat(sys, "engine", O_RDONLY);
igt_require(engines != -1);
close(sys);
enable_hangcheck(i915, true);
}
for (typeof(*tests) *t = tests; t->name; t++)
igt_subtest_with_dynamic(t->name)
dyn_sysfs_engines(i915, engines, ATTR, t->fn);
igt_fixture {
close(engines);
drm_close_driver(i915);
}
}
|