[igt-dev] [PATCH] tests/kms_cursor_legacy: Use igt_require_intel before get_reloc_ahnd

Petri Latvala petri.latvala at intel.com
Wed Nov 3 10:25:26 UTC 2021


On Mon, Nov 01, 2021 at 12:58:24PM -0400, Mark Yacoub wrote:
> From: Mark Yacoub <markyacoub at google.com>
> 
> [Why]
> get_reloc_ahnd uses the intel allocator, which is not supported on
> non-intel devices.
> 
> [How]
> Call igt_require_intel before any call to get_reloc_ahnd.
> 
> Test: igt at kms_cursor_legacy@flip-vs-cursor-busy-crc-{atomic,legacy} on
> ChromeOS Jacuzzi (MTK)
> 
> Signed-off-by: Mark Yacoub <markyacoub at chromium.org>

Reviewed-by: Petri Latvala <petri.latvala at intel.com>

> ---
>  tests/kms_cursor_legacy.c | 9 ++++++++-
>  1 file changed, 8 insertions(+), 1 deletion(-)
> 
> diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
> index 81362807..e48cdf6c 100644
> --- a/tests/kms_cursor_legacy.c
> +++ b/tests/kms_cursor_legacy.c
> @@ -522,10 +522,16 @@ static void basic_flip_cursor(igt_display_t *display,
>  	struct igt_fb fb_info, cursor_fb, cursor_fb2, argb_fb;
>  	unsigned vblank_start;
>  	enum pipe pipe = find_connected_pipe(display, false);
> -	uint64_t ahnd = (flags & BASIC_BUSY) ? get_reloc_ahnd(display->drm_fd, 0) : 0;
> +	uint64_t ahnd = 0;
>  	igt_spin_t *spin;
>  	int i, miss1 = 0, miss2 = 0, delta;
>  
> +	if (flags & BASIC_BUSY)
> +	{
> +		igt_require_intel(display->drm_fd);
> +		ahnd = get_reloc_ahnd(display->drm_fd, 0);
> +	}
> +
>  	if (mode >= flip_test_atomic)
>  		igt_require(display->is_atomic);
>  
> @@ -1327,6 +1333,7 @@ static void flip_vs_cursor_busy_crc(igt_display_t *display, bool atomic)
>  	igt_pipe_t *pipe_connected = &display->pipes[pipe];
>  	igt_plane_t *plane_primary = igt_pipe_get_plane_type(pipe_connected, DRM_PLANE_TYPE_PRIMARY);
>  	igt_crc_t crcs[2], test_crc;
> +	igt_require_intel(display->drm_fd);
>  	uint64_t ahnd = get_reloc_ahnd(display->drm_fd, 0);
>  
>  	if (atomic)
> -- 
> 2.33.1.1089.g2158813163f-goog
> 


More information about the igt-dev mailing list