drm/i915/selftests: Filter out both physical address swizzles

In our swizzling selftests, we cannot predict the physical address of
the target page (at least not simply!) and so skip bit17 swizzles.
However, there are two bit17 swizzle modes and we only skipped one, with
the second being observed on the lab gdg causing the test to fail,
as soon as we hit a page with bit17 set in its address.

Testcase: igt/drv_selftest/live_objects #gdg
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180709194915.5789-1-chris@chris-wilson.co.uk
This commit is contained in:
Chris Wilson 2018-07-09 20:49:15 +01:00
parent ebfa7944d6
commit cecb368d2f
1 changed files with 2 additions and 1 deletions

View File

@ -375,7 +375,8 @@ static int igt_partial_tiling(void *arg)
} }
GEM_BUG_ON(tile.swizzle == I915_BIT_6_SWIZZLE_UNKNOWN); GEM_BUG_ON(tile.swizzle == I915_BIT_6_SWIZZLE_UNKNOWN);
if (tile.swizzle == I915_BIT_6_SWIZZLE_9_10_17) if (tile.swizzle == I915_BIT_6_SWIZZLE_9_17 ||
tile.swizzle == I915_BIT_6_SWIZZLE_9_10_17)
continue; continue;
if (INTEL_GEN(i915) <= 2) { if (INTEL_GEN(i915) <= 2) {