[igt-dev] [PATCH i-g-t 31/93] tests/amdgpu/amd_prime: Convert to intel_ctx_t

Zbigniew Kempczyński zbigniew.kempczynski at intel.com
Thu Jun 10 12:24:03 UTC 2021


On Wed, Jun 09, 2021 at 12:36:14PM -0500, Jason Ekstrand wrote:
> Written totally blind but I'm pretty sure it's right.
> 
> Signed-off-by: Jason Ekstrand <jason at jlekstrand.net>
> ---
>  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 3e5cc1a7..248fbc35 100644
> --- a/tests/amdgpu/amd_prime.c
> +++ b/tests/amdgpu/amd_prime.c
> @@ -173,6 +173,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;
> @@ -181,8 +182,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);
>  
> @@ -199,14 +202,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

Looks ok.

Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski at intel.com>

--
Zbigniew

> 
> _______________________________________________
> igt-dev mailing list
> igt-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev


More information about the igt-dev mailing list