[Intel-gfx] [PATCH 2/2] drm/i915/selftests; Do not try to sanitize mock HW
Chris Wilson
chris at chris-wilson.co.uk
Fri Sep 27 19:14:43 UTC 2019
If we are mocking the device, skip trying to sanitize the pm HW state.
Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>
Cc: Andi Shyti <andi.shyti at intel.com>
---
drivers/gpu/drm/i915/gt/intel_gt_pm.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_gt_pm.c b/drivers/gpu/drm/i915/gt/intel_gt_pm.c
index 42f175d9b98c..29fa1dabbc2e 100644
--- a/drivers/gpu/drm/i915/gt/intel_gt_pm.c
+++ b/drivers/gpu/drm/i915/gt/intel_gt_pm.c
@@ -137,7 +137,8 @@ void intel_gt_sanitize(struct intel_gt *gt, bool force)
void intel_gt_pm_disable(struct intel_gt *gt)
{
- intel_sanitize_gt_powersave(gt->i915);
+ if (!is_mock_gt(gt))
+ intel_sanitize_gt_powersave(gt->i915);
}
void intel_gt_pm_fini(struct intel_gt *gt)
--
2.23.0
More information about the Intel-gfx
mailing list