[PATCH i-g-t v2 7/7] benchmarks/kms_fb_stress: Add command line options to pin the planes or writeback formats

Arthur Grillo arthurgrillo at riseup.net
Wed Mar 6 23:42:04 UTC 2024



On 06/03/24 19:50, Louis Chauvet wrote:
> Le 06/03/24 - 15:14, Arthur Grillo a écrit :
>>
>>
>> On 06/03/24 14:29, Louis Chauvet wrote:
>>> Le 05/03/24 - 20:15, Arthur Grillo a écrit :
>>>> Currently, the benchmark runs all the possible combinations of formats,
>>>> which can take a lot of time. Change that by adding command line options
>>>> to pin the planes or writeback formats, with the intention to decrease
>>>> the number of cases to run.
>>>>
>>>> Signed-off-by: Arthur Grillo <arthurgrillo at riseup.net>
>>>> ---
>>>>  benchmarks/kms_fb_stress.c | 140 ++++++++++++++++++++++++++++++++-------------
>>>>  1 file changed, 99 insertions(+), 41 deletions(-)
>>>>
>>>> diff --git a/benchmarks/kms_fb_stress.c b/benchmarks/kms_fb_stress.c
>>>> index deee9d557175..37f60f0bfa94 100644
>>>> --- a/benchmarks/kms_fb_stress.c
>>>> +++ b/benchmarks/kms_fb_stress.c
>>>> @@ -3,6 +3,7 @@
>>>>   * Copyright © 2024 Arthur Grillo
>>>>   */
>>>>  
>>>> +#include <stdbool.h>
>>>>  #include <stdint.h>
>>>>  
>>>>  #include "igt.h"
>>>> @@ -41,6 +42,10 @@ struct data_t {
>>>>  	size_t wb_fmt_count;
>>>>  	drmModeModeInfo *mode;
>>>>  	struct kms_t kms;
>>>> +	bool selected_primary_fmt;
>>>> +	bool selected_overlay_a_fmt;
>>>> +	bool selected_overlay_b_fmt;
>>>> +	bool selected_writeback_fmt;
>>>>  };
>>>
>>> Hi Arthur!
>>>
>>> Nice work, for the next iteration of my series I will use this to run 
>>> a full test, thanks!
>>
>> Hi Louis!
>>
>> That would be great! While developing this, I ran it with your patch and
>> I could see a significant improvement!
>>
>>>
>>> If I understand correclty, when you "pin" a format, it will always use the 
>>> first available? It's not possible to say "I want to test NV24"?
>>
>>
>> No, you can choose what format you "pin", like:
>> kms_fb_stress --primary-format=NV24
>>
>> With this, the primary plane format will always be NV24 and the
>> others will change.
>>
>> Do you think this is not clear in the commit msg or help text?
> 
> I missunderstood how it works because I read first the data_t structure 
> and the "bool selected_*_fmt", where I did not understand why it was a 
> bool and not a uint32_t (for DRM_FORMAT*). And I was too fast reading 
> opt_handler, in which it is very obvious... sorry

It's ok, it happens :)

> 
>>>
>>> Do you think it will be difficult to add this kind of option (like 
>>> --writeback-format in kms_writeback)?
>>
>> I think the option already does what you want. If not, please reply.
> 
> Yes, it does! The help message was not very clear for me, I read "pin" as 
> "only use one format, but I don't care which one", not "use this specific 
> format". Do you think something like this is better: "Use a specific DRM 
> format for the * plane"?

Sure, I can do that, I will put this on v2.

Best Regards,
~Arthur Grillo

> 
> Kind regards,
> Louis Chauvet
> 
>> Best Regards,
>> ~Arthur Grillo
>>
>>>
>>> Kind regards,
>>> Louis Chauvet
>>>
>>>>  static void plane_setup(struct plane_t *plane, int index)
>>>> @@ -243,45 +248,87 @@ static void stress_driver(struct data_t *data)
>>>>  	igt_info("Time spent in the loop with %d frames: %lfs.\n", FRAME_COUNT, elapsed);
>>>>  }
>>>>  
>>>> -static struct kms_t default_kms = {
>>>> -	.crtc = {
>>>> -		.width = 4096, .height = 2160,
>>>> -	},
>>>> -	.primary = {
>>>> -		.rect = {
>>>> -			.x = 101, .y = 0,
>>>> -			.width = 3639, .height = 2160,
>>>> +static int opt_handler(int opt, int opt_index, void *_data)
>>>> +{
>>>> +	struct data_t *data = _data;
>>>> +	struct kms_t *kms =  &data->kms;
>>>> +
>>>> +	switch (opt) {
>>>> +	case 'p':
>>>> +		kms->primary.format = igt_drm_format_str_to_format(optarg);
>>>> +		data->selected_primary_fmt = true;
>>>> +		break;
>>>> +	case 'a':
>>>> +		kms->overlay_a.format = igt_drm_format_str_to_format(optarg);
>>>> +		data->selected_overlay_a_fmt = true;
>>>> +		break;
>>>> +	case 'b':
>>>> +		kms->overlay_b.format = igt_drm_format_str_to_format(optarg);
>>>> +		data->selected_overlay_b_fmt = true;
>>>> +		break;
>>>> +	case 'w':
>>>> +		kms->writeback.format = igt_drm_format_str_to_format(optarg);
>>>> +		data->selected_writeback_fmt = true;
>>>> +		break;
>>>> +	default:
>>>> +		return IGT_OPT_HANDLER_ERROR;
>>>> +	}
>>>> +
>>>> +	return IGT_OPT_HANDLER_SUCCESS;
>>>> +}
>>>> +
>>>> +static const char *help_str =
>>>> +	"  --primary-format\t\tPin the primary plane format\n"
>>>> +	"  --overlay-a-format\t\tPin the overlay A plane format\n"
>>>> +	"  --overlay-b-format\t\tPin the overlay B plane format\n"
>>>> +	"  --writeback-format\t\tPin the writeback format\n";
>>>> +
>>>> +static const struct option long_options[] = {
>>>> +	{ .name = "primary-format", .has_arg = true, .val = 'p'},
>>>> +	{ .name = "overlay-a-format", .has_arg = true, .val = 'a'},
>>>> +	{ .name = "overlay-b-format", .has_arg = true, .val = 'b'},
>>>> +	{ .name = "writeback-format", .has_arg = true, .val = 'w'},
>>>> +	{}
>>>> +};
>>>> +
>>>> +static struct data_t data = (struct data_t){
>>>> +	.kms = {
>>>> +			.crtc = {
>>>> +				.width = 4096, .height = 2160,
>>>> +			},
>>>> +		.primary = {
>>>> +			.rect = {
>>>> +				.x = 101, .y = 0,
>>>> +				.width = 3639, .height = 2160,
>>>> +			},
>>>>  		},
>>>> -	},
>>>> -	.overlay_a = {
>>>> -		.rect = {
>>>> -			.x = 201, .y = 199,
>>>> -			.width = 3033, .height = 1777,
>>>> +		.overlay_a = {
>>>> +			.rect = {
>>>> +				.x = 201, .y = 199,
>>>> +				.width = 3033, .height = 1777,
>>>> +			},
>>>>  		},
>>>> -	},
>>>> -	.overlay_b = {
>>>> -		.rect = {
>>>> -			.x = 1800, .y = 250,
>>>> -			.width = 1507, .height = 1400,
>>>> +		.overlay_b = {
>>>> +			.rect = {
>>>> +				.x = 1800, .y = 250,
>>>> +				.width = 1507, .height = 1400,
>>>> +			},
>>>>  		},
>>>> -	},
>>>> -	.writeback = {
>>>> -		.rect = {
>>>> -			.x = 0, .y = 0,
>>>> -			// Size is to be determined at runtime
>>>> +		.writeback = {
>>>> +			.rect = {
>>>> +				.x = 0, .y = 0,
>>>> +				// Size is to be determined at runtime
>>>> +			},
>>>>  		},
>>>>  	},
>>>>  };
>>>>  
>>>> -
>>>> -igt_simple_main
>>>> +igt_simple_main_args(NULL, long_options, help_str, opt_handler, &data)
>>>>  {
>>>> -	struct data_t data = {0};
>>>>  	size_t primary_fmt_count = 0;
>>>>  	size_t overlay_a_fmt_count = 0;
>>>>  	size_t overlay_b_fmt_count = 0;
>>>> -
>>>> -	data.kms = default_kms;
>>>> +	size_t wb_fmt_count = 0;
>>>>  
>>>>  	data.fd = drm_open_driver_master(DRIVER_ANY);
>>>>  
>>>> @@ -314,37 +361,48 @@ igt_simple_main
>>>>  								  DRM_PLANE_TYPE_OVERLAY, 1);
>>>>  	igt_assert(data.kms.overlay_b.base != NULL);
>>>>  
>>>> -	primary_fmt_count = data.kms.primary.base->format_mod_count;
>>>> -	overlay_a_fmt_count = data.kms.overlay_a.base->format_mod_count;
>>>> -	overlay_b_fmt_count = data.kms.overlay_b.base->format_mod_count;
>>>> +	primary_fmt_count = data.selected_primary_fmt ?
>>>> +			    1 : data.kms.primary.base->format_mod_count;
>>>> +	overlay_a_fmt_count = data.selected_overlay_a_fmt ?
>>>> +			      1 : data.kms.overlay_a.base->format_mod_count;
>>>> +	overlay_b_fmt_count = data.selected_overlay_b_fmt ?
>>>> +			      1 : data.kms.overlay_b.base->format_mod_count;
>>>> +	wb_fmt_count = data.selected_writeback_fmt ? 1 : data.wb_fmt_count;
>>>>  
>>>>  	for (size_t i = 0;
>>>>  	     i < primary_fmt_count *
>>>>  		 overlay_a_fmt_count *
>>>>  		 overlay_b_fmt_count *
>>>> -		 data.wb_fmt_count;
>>>> +		 wb_fmt_count;
>>>>  	     i++) {
>>>>  		size_t p = (i / (overlay_a_fmt_count *
>>>>  				 overlay_b_fmt_count *
>>>> -				 data.wb_fmt_count)) % primary_fmt_count;
>>>> +				 wb_fmt_count)) % primary_fmt_count;
>>>>  
>>>>  		size_t a = (i / (overlay_b_fmt_count *
>>>> -				 data.wb_fmt_count)) % overlay_a_fmt_count;
>>>> +				 wb_fmt_count)) % overlay_a_fmt_count;
>>>> +
>>>> +		size_t b = (i / wb_fmt_count) % overlay_a_fmt_count;
>>>> +
>>>> +		size_t w = i % wb_fmt_count;
>>>> +
>>>> +		if (data.selected_primary_fmt == false)
>>>> +			data.kms.primary.format = data.kms.primary.base->formats[p];
>>>>  
>>>> -		size_t b = (i / data.wb_fmt_count) % overlay_a_fmt_count;
>>>> +		if (data.selected_overlay_a_fmt == false)
>>>> +			data.kms.overlay_a.format = data.kms.overlay_a.base->formats[a];
>>>>  
>>>> -		size_t w = i % data.wb_fmt_count;
>>>> +		if (data.selected_overlay_b_fmt == false)
>>>> +			data.kms.overlay_b.format = data.kms.overlay_b.base->formats[b];
>>>>  
>>>> -		data.kms.primary.format = data.kms.primary.base->formats[p];
>>>> -		data.kms.overlay_a.format = data.kms.overlay_a.base->formats[a];
>>>> -		data.kms.overlay_b.format = data.kms.overlay_b.base->formats[b];
>>>> -		data.kms.writeback.format = data.wb_formats[w];
>>>> +		if (data.selected_writeback_fmt == false)
>>>> +			data.kms.writeback.format = data.wb_formats[w];
>>>>  
>>>>  		igt_info("formats: primary: %zu/%zu overlay_a: %zu/%zu overlay_b: %zu/%zu writeback: %zu/%zu\n",
>>>>  			 p + 1, primary_fmt_count,
>>>>  			 a + 1, overlay_a_fmt_count,
>>>>  			 b + 1, overlay_b_fmt_count,
>>>> -			 w + 1, data.wb_fmt_count);
>>>> +			 w + 1, wb_fmt_count);
>>>>  
>>>>  		stress_driver(&data);
>>>>  	}
>>>>
>>>> -- 
>>>> 2.43.0
>>>>
> 


More information about the igt-dev mailing list