[PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: Support gens without relocations

Bernatowicz, Marcin marcin.bernatowicz at linux.intel.com
Thu Jul 25 09:13:31 UTC 2024


Hi Kamil,

On 7/23/2024 11:52 AM, Kamil Konieczny wrote:
> Hi Marcin,
> On 2023-12-14 at 21:13:01 +0100, Marcin Bernatowicz wrote:
>> This commit adopts the approach present in lib/igt_dummyload
>> to support generations that do not use relocations.
>> The intel_allocator is leveraged to compute offsets on these generations.
>> Apart of this change, the 'struct vm' is now shared by both i915 and
>> Xe. It includes a 'vm_id' that the intel_allocator uses for address
>> assignment.
>> This modification enhances gem_wsim compatibility with newer platforms
>> running i915.
> 
> Overall looks good, only few nits, see below.
> 
>>
>> v2: split mmap change to separate patch (Tvrtko)
> 
> Added new e-mails for Tvrtko: +Cc: Tvrtko Ursulin <tursulin at ursulin.net>
> +Cc: Tvrtko Ursulin <tursulin at igalia.com>
> 
>>
>> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz at linux.intel.com>
>> ---
>>   benchmarks/gem_wsim.c | 96 ++++++++++++++++++++++++++++++++-----------
>>   1 file changed, 71 insertions(+), 25 deletions(-)
>>
>> diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c
>> index 30673da8f..a1db37d4e 100644
>> --- a/benchmarks/gem_wsim.c
>> +++ b/benchmarks/gem_wsim.c
>> @@ -205,7 +205,7 @@ struct w_step {
>>   	uint32_t bb_handle;
>>   };
>>   
>> -struct xe_vm {
>> +struct vm {
>>   	uint32_t id;
>>   	bool compute_mode;
>>   	uint64_t ahnd;
>> @@ -226,9 +226,9 @@ struct ctx {
>>   	struct bond *bonds;
>>   	bool load_balance;
>>   	uint64_t sseu;
>> +	/* reference to vm */
>> +	struct vm *vm;
>>   	struct {
>> -		/* reference to vm */
>> -		struct xe_vm *vm;
>>   		/* exec queues */
>>   		unsigned int nr_queues;
>>   		struct xe_exec_queue *queue_list;
>> @@ -256,10 +256,8 @@ struct workload {
>>   	unsigned int nr_ctxs;
>>   	struct ctx *ctx_list;
>>   
>> -	struct {
>> -		unsigned int nr_vms;
>> -		struct xe_vm *vm_list;
>> -	} xe;
>> +	unsigned int nr_vms;
>> +	struct vm *vm_list;
>>   
>>   	struct working_set **working_sets; /* array indexed by set id */
>>   	int max_working_set_id;
>> @@ -1539,9 +1537,11 @@ static unsigned int create_bb(struct w_step *w, int self)
>>   	/* Save delta for indirect read by COND_BBE */
>>   	*cs++ = MI_STORE_REGISTER_MEM_CMD | (1 + use_64b) | MI_CS_MMIO_DST;
>>   	*cs++ = CS_GPR(NOW_TS);
>> +	w->i915.reloc[r].presumed_offset = w->i915.obj[self].offset;
>>   	w->i915.reloc[r].target_handle = self;
>>   	w->i915.reloc[r].offset = offset_in_page(cs);
>> -	*cs++ = w->i915.reloc[r].delta = 4000;
>> +	w->i915.reloc[r].delta = 4000;
>> +	*cs++ = w->i915.reloc[r].presumed_offset + w->i915.reloc[r].delta;
>>   	*cs++ = 0;
>>   	r++;
>>   
>> @@ -1556,17 +1556,21 @@ static unsigned int create_bb(struct w_step *w, int self)
>>   	*cs++ = MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE | (1 + use_64b);
>>   	w->i915.bb_duration = cs;
>>   	*cs++ = 0;
>> +	w->i915.reloc[r].presumed_offset = w->i915.obj[self].offset;
>>   	w->i915.reloc[r].target_handle = self;
>>   	w->i915.reloc[r].offset = offset_in_page(cs);
>> -	*cs++ = w->i915.reloc[r].delta = 4000;
>> +	w->i915.reloc[r].delta = 4000;
>> +	*cs++ = w->i915.reloc[r].presumed_offset + w->i915.reloc[r].delta;
>>   	*cs++ = 0;
>>   	r++;
>>   
>>   	/* Otherwise back to recalculating delta */
>>   	*cs++ = MI_BATCH_BUFFER_START | 1 << 8 | use_64b;
>> +	w->i915.reloc[r].presumed_offset = w->i915.obj[self].offset;
>>   	w->i915.reloc[r].target_handle = self;
>>   	w->i915.reloc[r].offset = offset_in_page(cs);
>> -	*cs++ = w->i915.reloc[r].delta = offset_in_page(jmp);
>> +	w->i915.reloc[r].delta = offset_in_page(jmp);
>> +	*cs++ = w->i915.reloc[r].presumed_offset + w->i915.reloc[r].delta;
>>   	*cs++ = 0;
>>   	r++;
>>   
>> @@ -1648,10 +1652,10 @@ xe_get_eq(struct workload *wrk, const struct w_step *w)
>>   	return eq;
>>   }
>>   
>> -static struct xe_vm *
>> -xe_get_vm(struct workload *wrk, const struct w_step *w)
>> +static struct vm *
>> +get_vm(struct workload *wrk, const struct w_step *w)
> 
> You don't use 'w' here so maybe drop this param?
For now, let's keep the changes in the patch minimal to avoid 
introducing unnecessary modifications. I anticipate that this parameter 
will become necessary as we expand our handling of multiple VMs.
> 
>>   {
>> -	return wrk->xe.vm_list;
>> +	return wrk->vm_list;
>>   }
>>   
>>   static uint32_t alloc_bo(int i915, unsigned long *size)
>> @@ -1673,6 +1677,16 @@ alloc_step_batch(struct workload *wrk, struct w_step *w)
>>   	struct dep_entry *dep;
>>   	unsigned int j = 0;
>>   	unsigned int nr_obj = 2 + w->data_deps.nr;
>> +	unsigned int objflags = 0;
>> +	uint64_t addr;
>> +	struct vm *vm = get_vm(wrk, w);
>> +
>> +	addr = gem_aperture_size(fd) / 2;
>> +	if (addr >> 32)
>> +		objflags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS;
>> +
>> +	if (vm->ahnd)
>> +		objflags |= EXEC_OBJECT_PINNED;
>>   
>>   	w->i915.obj = calloc(nr_obj, sizeof(*w->i915.obj));
>>   	igt_assert(w->i915.obj);
>> @@ -1680,11 +1694,18 @@ alloc_step_batch(struct workload *wrk, struct w_step *w)
>>   	w->bb_size = PAGE_SIZE;
>>   	w->i915.obj[j].handle = alloc_bo(fd, &w->bb_size);
>>   	w->i915.obj[j].flags = EXEC_OBJECT_WRITE;
>> +	if (vm->ahnd) {
>> +		addr = get_offset(vm->ahnd, w->i915.obj[j].handle, w->bb_size, 0);
>> +		w->i915.obj[j].offset = CANONICAL(addr);
>> +		w->i915.obj[j].flags |= objflags;
>> +	}
>> +
>>   	j++;
>>   	igt_assert(j < nr_obj);
>>   
>>   	for_each_dep(dep, w->data_deps) {
>>   		uint32_t dep_handle;
>> +		uint64_t dep_size;
>>   
>>   		if (dep->working_set == -1) {
>>   			int dep_idx = w->idx + dep->target;
>> @@ -1694,6 +1715,7 @@ alloc_step_batch(struct workload *wrk, struct w_step *w)
>>   			igt_assert(wrk->steps[dep_idx].type == BATCH);
>>   
>>   			dep_handle = wrk->steps[dep_idx].i915.obj[0].handle;
>> +			dep_size = w->bb_size;
>>   		} else {
>>   			struct working_set *set;
>>   
>> @@ -1707,18 +1729,33 @@ alloc_step_batch(struct workload *wrk, struct w_step *w)
>>   			igt_assert(set->sizes[dep->target].size);
>>   
>>   			dep_handle = set->handles[dep->target];
>> +			dep_size = set->sizes[dep->target].size;
>>   		}
>>   
>>   		w->i915.obj[j].flags = dep->write ? EXEC_OBJECT_WRITE : 0;
>>   		w->i915.obj[j].handle = dep_handle;
>> +		if (vm->ahnd) {
>> +			addr = get_offset(vm->ahnd, w->i915.obj[j].handle, dep_size, 0);
>> +			w->i915.obj[j].offset = CANONICAL(addr);
>> +			w->i915.obj[j].flags |= objflags;
>> +		}
>>   		j++;
>>   		igt_assert(j < nr_obj);
>>   	}
>>   
>>   	w->bb_handle = w->i915.obj[j].handle = alloc_bo(fd, &w->bb_size);
>> +	if (vm->ahnd) {
>> +		addr = get_offset(vm->ahnd, w->i915.obj[j].handle, w->bb_size, 0);
>> +		w->i915.obj[j].offset = CANONICAL(addr);
>> +		w->i915.obj[j].flags |= objflags;
>> +	}
>>   	w->i915.obj[j].relocation_count = create_bb(w, j);
>> -	igt_assert(w->i915.obj[j].relocation_count <= ARRAY_SIZE(w->i915.reloc));
>> -	w->i915.obj[j].relocs_ptr = to_user_pointer(&w->i915.reloc);
>> +	if (vm->ahnd) {
>> +		w->i915.obj[j].relocation_count = 0;
>> +	} else {
>> +		igt_assert(w->i915.obj[j].relocation_count <= ARRAY_SIZE(w->i915.reloc));
>> +		w->i915.obj[j].relocs_ptr = to_user_pointer(&w->i915.reloc);
>> +	}
>>   
>>   	w->i915.eb.buffers_ptr = to_user_pointer(w->i915.obj);
>>   	w->i915.eb.buffer_count = j + 1;
>> @@ -1738,7 +1775,7 @@ alloc_step_batch(struct workload *wrk, struct w_step *w)
>>   static void
>>   xe_alloc_step_batch(struct workload *wrk, struct w_step *w)
>>   {
>> -	struct xe_vm *vm = xe_get_vm(wrk, w);
>> +	struct vm *vm = get_vm(wrk, w);
>>   	struct xe_exec_queue *eq = xe_get_eq(wrk, w);
>>   	struct dep_entry *dep;
>>   	int i;
>> @@ -2032,7 +2069,7 @@ static void measure_active_set(struct workload *wrk)
>>   
>>   #define alloca0(sz) ({ size_t sz__ = (sz); memset(alloca(sz__), 0, sz__); })
>>   
>> -static void xe_vm_create_(struct xe_vm *vm)
>> +static void xe_vm_create_(struct vm *vm)
>>   {
>>   	uint32_t flags = 0;
>>   
>> @@ -2046,7 +2083,7 @@ static void xe_vm_create_(struct xe_vm *vm)
>>   static void xe_exec_queue_create_(struct ctx *ctx, struct xe_exec_queue *eq)
>>   {
>>   	struct drm_xe_exec_queue_create create = {
>> -		.vm_id = ctx->xe.vm->id,
>> +		.vm_id = ctx->vm->id,
>>   		.width = 1,
>>   		.num_placements = eq->nr_hwes,
>>   		.instances = to_user_pointer(eq->hwe_list),
>> @@ -2159,6 +2196,13 @@ static int prepare_contexts(unsigned int id, struct workload *wrk)
>>   				gem_context_get_param(fd, &param);
>>   				igt_assert(param.value);
>>   				share_vm = param.value;
>> +				wrk->nr_vms = 1;
>> +				wrk->vm_list = calloc(wrk->nr_vms, sizeof(struct vm));
>> +				igt_assert(wrk->vm_list);
>> +				wrk->vm_list->id = share_vm;
>> +				wrk->vm_list->ahnd = intel_allocator_open(fd, share_vm,
>> +								INTEL_ALLOCATOR_RELOC);
> --------------------------------^
> Align to 'fd'
ok
> 
>> +				ctx2->vm = wrk->vm_list;
>>   				break;
>>   			}
>>   
>> @@ -2174,6 +2218,7 @@ static int prepare_contexts(unsigned int id, struct workload *wrk)
>>   		ctx_id = args.ctx_id;
>>   		ctx->id = ctx_id;
>>   		ctx->sseu = device_sseu.slice_mask;
>> +		ctx->vm = wrk->vm_list;
>>   
>>   		__configure_context(ctx_id, wrk->prio);
>>   
>> @@ -2267,16 +2312,17 @@ static int xe_prepare_contexts(unsigned int id, struct workload *wrk)
>>   	unsigned int i;
>>   
>>   	/* shortcut, create one vm */
>> -	wrk->xe.nr_vms = 1;
>> -	wrk->xe.vm_list = calloc(wrk->xe.nr_vms, sizeof(struct xe_vm));
>> -	wrk->xe.vm_list->compute_mode = false;
>> -	xe_vm_create_(wrk->xe.vm_list);
>> -	wrk->xe.vm_list->ahnd = intel_allocator_open(fd, wrk->xe.vm_list->id,
>> +	wrk->nr_vms = 1;
>> +	wrk->vm_list = calloc(wrk->nr_vms, sizeof(struct vm));
>> +	igt_assert(wrk->vm_list);
>> +	wrk->vm_list->compute_mode = false;
>> +	xe_vm_create_(wrk->vm_list);
>> +	wrk->vm_list->ahnd = intel_allocator_open(fd, wrk->vm_list->id,
>>   						     INTEL_ALLOCATOR_RELOC);
> 
> Same here, align.
ok
> 
>>   
>>   	__for_each_ctx(ctx, wrk, ctx_idx) {
>>   		/* link with vm */
>> -		ctx->xe.vm = wrk->xe.vm_list;
>> +		ctx->vm = wrk->vm_list;
> 
> Why do you treat vm_list as actual vm? Why not changing s/vm_list/vm/
The plan is to support more vms, but the first step is a common vm,
so a one element list at the moment.
> 
> With above aligning fixed
> Reviewed-by: Kamil Konieczny <kamil.konieczny at linux.intel.com>
>
Thanks for review

> Regards,
> Kamil
> 
>>   		for_each_w_step(w, wrk) {
>>   			if (w->context != ctx_idx)
>>   				continue;
>> @@ -2846,7 +2892,7 @@ static void *run_workload(void *data)
>>   				w_step_sync(w);
>>   				syncobj_destroy(fd, w->xe.syncs[0].handle);
>>   				free(w->xe.syncs);
>> -				xe_vm_unbind_sync(fd, xe_get_vm(wrk, w)->id, 0, w->xe.exec.address,
>> +				xe_vm_unbind_sync(fd, get_vm(wrk, w)->id, 0, w->xe.exec.address,
>>   						  w->bb_size);
>>   				gem_munmap(w->xe.data, w->bb_size);
>>   				gem_close(fd, w->bb_handle);
>> -- 
>> 2.31.1
>>


More information about the igt-dev mailing list