[igt-dev] [PATCH i-g-t 29/74] tests/amdgpu/amd_prime: Convert to intel_ctx_t
Jason Ekstrand
jason at jlekstrand.net
Thu Apr 15 19:11:00 UTC 2021
Written totally blind but I'm pretty sure it's right.
---
tests/amdgpu/amd_prime.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/tests/amdgpu/amd_prime.c b/tests/amdgpu/amd_prime.c
index 537b0bcd..cf8a0ad9 100644
--- a/tests/amdgpu/amd_prime.c
+++ b/tests/amdgpu/amd_prime.c
@@ -172,6 +172,7 @@ static void unplug(struct cork *c)
static void i915_to_amd(int i915, int amd, amdgpu_device_handle device)
{
const uint32_t bbe = MI_BATCH_BUFFER_END;
+ intel_ctx_cfg_t cfg;
struct drm_i915_gem_exec_object2 obj[2];
struct drm_i915_gem_execbuffer2 execbuf;
const struct intel_execution_engine2 *e;
@@ -180,8 +181,10 @@ static void i915_to_amd(int i915, int amd, amdgpu_device_handle device)
unsigned long count;
struct cork c;
+ cfg = intel_ctx_cfg_all_physical(i915);
+
nengine = 0;
- __for_each_physical_engine(i915, e)
+ for_each_ctx_cfg_engine(i915, &cfg, e)
engines[nengine++] = e->flags;
igt_require(nengine);
@@ -198,14 +201,15 @@ static void i915_to_amd(int i915, int amd, amdgpu_device_handle device)
count = 0;
igt_until_timeout(5) {
- execbuf.rsvd1 = gem_context_clone_with_engines(i915, 0);
+ const intel_ctx_t *ctx = intel_ctx_create(i915, &cfg);
+ execbuf.rsvd1 = ctx->id;
for (unsigned n = 0; n < nengine; n++) {
execbuf.flags = engines[n];
gem_execbuf(i915, &execbuf);
}
- gem_context_destroy(i915, execbuf.rsvd1);
+ intel_ctx_destroy(i915, ctx);
count++;
if (!gem_uses_full_ppgtt(i915))
--
2.31.1
More information about the igt-dev
mailing list