mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 07:45:12 +07:00
28d6ccce73
Two simple selftests which test that both GT and engine workarounds are not lost after either a full GPU reset, or after the per-engine ones. (Including checks that one engine reset is not affecting workarounds not belonging to itself.) v2: * Rebase for series refactoring. * Add spinner for actual engine reset! * Add idle reset test as well. (Chris Wilson) * Share existing global_reset_lock. (Chris Wilson) v3: * intel_engine_verify_workarounds can be static. * API rename. (Chris Wilson) * Move global reset lock out of the loop. (Chris Wilson) v4: * Add missing rpm puts. (Chris Wilson) Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20181203125014.3219-5-tvrtko.ursulin@linux.intel.com
45 lines
1.1 KiB
C
45 lines
1.1 KiB
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright © 2018 Intel Corporation
|
|
*/
|
|
|
|
#include "igt_reset.h"
|
|
|
|
#include "../i915_drv.h"
|
|
#include "../intel_ringbuffer.h"
|
|
|
|
void igt_global_reset_lock(struct drm_i915_private *i915)
|
|
{
|
|
struct intel_engine_cs *engine;
|
|
enum intel_engine_id id;
|
|
|
|
pr_debug("%s: current gpu_error=%08lx\n",
|
|
__func__, i915->gpu_error.flags);
|
|
|
|
while (test_and_set_bit(I915_RESET_BACKOFF, &i915->gpu_error.flags))
|
|
wait_event(i915->gpu_error.reset_queue,
|
|
!test_bit(I915_RESET_BACKOFF,
|
|
&i915->gpu_error.flags));
|
|
|
|
for_each_engine(engine, i915, id) {
|
|
while (test_and_set_bit(I915_RESET_ENGINE + id,
|
|
&i915->gpu_error.flags))
|
|
wait_on_bit(&i915->gpu_error.flags,
|
|
I915_RESET_ENGINE + id,
|
|
TASK_UNINTERRUPTIBLE);
|
|
}
|
|
}
|
|
|
|
void igt_global_reset_unlock(struct drm_i915_private *i915)
|
|
{
|
|
struct intel_engine_cs *engine;
|
|
enum intel_engine_id id;
|
|
|
|
for_each_engine(engine, i915, id)
|
|
clear_bit(I915_RESET_ENGINE + id, &i915->gpu_error.flags);
|
|
|
|
clear_bit(I915_RESET_BACKOFF, &i915->gpu_error.flags);
|
|
wake_up_all(&i915->gpu_error.reset_queue);
|
|
}
|