[igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_ctx_shared: Use gem_mmap__device_coherent_sync api
Sreedhar Telukuntla
sreedhar.telukuntla at intel.com
Tue Feb 18 00:17:10 UTC 2020
Replace the existing gem_mmap__device_coherent and gem_set_domain
calls with the new api gem_mmap__device_coherent_sync which takes
care of setting the appropriate memory domain along with memory mapping
Signed-off-by: Sreedhar Telukuntla <sreedhar.telukuntla at intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin at intel.com>
---
tests/i915/gem_ctx_shared.c | 23 ++++++-----------------
1 file changed, 6 insertions(+), 17 deletions(-)
diff --git a/tests/i915/gem_ctx_shared.c b/tests/i915/gem_ctx_shared.c
index 820b96c1..d7d86bc5 100644
--- a/tests/i915/gem_ctx_shared.c
+++ b/tests/i915/gem_ctx_shared.c
@@ -214,9 +214,8 @@ static void exec_shared_gtt(int i915, unsigned int ring)
gem_close(i915, scratch);
scratch = gem_create(i915, 4096);
- s = gem_mmap__wc(i915, scratch, 0, 4096, PROT_WRITE);
+ s = gem_mmap__device_coherent_sync(i915, scratch, 0, 4096, PROT_WRITE);
- gem_set_domain(i915, scratch, I915_GEM_DOMAIN_WC, I915_GEM_DOMAIN_WC);
s[0] = bbe;
s[64] = bbe;
@@ -605,9 +604,7 @@ static void independent(int i915, unsigned ring, unsigned flags)
for (int i = 0; i < ARRAY_SIZE(priorities); i++) {
uint32_t *ptr;
- ptr = gem_mmap__device_coherent(i915, handle[i], 0, 4096, PROT_READ);
- gem_set_domain(i915, handle[i], /* no write hazard lies! */
- I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
+ ptr = gem_mmap__device_coherent_sync(i915, handle[i], 0, 4096, PROT_READ);
gem_close(i915, handle[i]);
handle[i] = ptr[TIMESTAMP];
@@ -650,9 +647,7 @@ static void reorder(int i915, unsigned ring, unsigned flags)
gem_context_destroy(i915, ctx[LO]);
gem_context_destroy(i915, ctx[HI]);
- ptr = gem_mmap__device_coherent(i915, scratch, 0, 4096, PROT_READ);
- gem_set_domain(i915, scratch, /* no write hazard lies! */
- I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
+ ptr = gem_mmap__device_coherent_sync(i915, scratch, 0, 4096, PROT_READ);
gem_close(i915, scratch);
if (flags & EQUAL) /* equal priority, result will be fifo */
@@ -705,17 +700,13 @@ static void promotion(int i915, unsigned ring)
gem_context_destroy(i915, ctx[LO]);
gem_context_destroy(i915, ctx[HI]);
- ptr = gem_mmap__device_coherent(i915, dep, 0, 4096, PROT_READ);
- gem_set_domain(i915, dep, /* no write hazard lies! */
- I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
+ ptr = gem_mmap__device_coherent_sync(i915, dep, 0, 4096, PROT_READ);
gem_close(i915, dep);
igt_assert_eq_u32(ptr[0], ctx[HI]);
munmap(ptr, 4096);
- ptr = gem_mmap__device_coherent(i915, result, 0, 4096, PROT_READ);
- gem_set_domain(i915, result, /* no write hazard lies! */
- I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
+ ptr = gem_mmap__device_coherent_sync(i915, result, 0, 4096, PROT_READ);
gem_close(i915, result);
igt_assert_eq_u32(ptr[0], ctx[NOISE]);
@@ -768,9 +759,7 @@ static void smoketest(int i915, unsigned ring, unsigned timeout)
}
igt_waitchildren();
- ptr = gem_mmap__device_coherent(i915, scratch, 0, 4096, PROT_READ);
- gem_set_domain(i915, scratch, /* no write hazard lies! */
- I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
+ ptr = gem_mmap__device_coherent_sync(i915, scratch, 0, 4096, PROT_READ);
gem_close(i915, scratch);
for (unsigned n = 0; n < ncpus; n++) {
--
2.24.1
More information about the igt-dev
mailing list