[igt-dev] [PATCH i-g-t] tests/kms_getfb: Test we reject CCS buffers

Ville Syrjälä ville.syrjala at linux.intel.com
Fri Mar 23 13:00:37 UTC 2018


On Fri, Mar 23, 2018 at 11:59:55AM +0000, Daniel Stone wrote:
> The getfb ioctl only supports returning a single buffer handle
> (mirroring addfb), which means it should refuse to return us back CCS
> buffers.
> 
> This is enforced by the kernel as of b24791fe00f8.
> 
> Signed-off-by: Daniel Stone <daniels at collabora.com>

Reviewed-by: Ville Syrjälä <ville.syrjala at linux.intel.com>

> ---
>  tests/kms_getfb.c | 45 +++++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 45 insertions(+)
> 
> diff --git a/tests/kms_getfb.c b/tests/kms_getfb.c
> index 00b5dfcf..c5968e75 100644
> --- a/tests/kms_getfb.c
> +++ b/tests/kms_getfb.c
> @@ -40,6 +40,38 @@
>  #include "drm.h"
>  #include "drm_fourcc.h"
>  
> +static void get_ccs_fb(int fd, struct drm_mode_fb_cmd2 *ret)
> +{
> +	struct drm_mode_fb_cmd2 add = {
> +		.width = 1024,
> +		.height = 1024,
> +		.pixel_format = DRM_FORMAT_XRGB8888,
> +		.flags = DRM_MODE_FB_MODIFIERS,
> +		.modifier = {
> +			I915_FORMAT_MOD_Y_TILED_CCS,
> +			I915_FORMAT_MOD_Y_TILED_CCS,
> +		},
> +	};
> +	int size;
> +
> +	/* An explanation of the magic numbers can be found in kms_ccs.c. */
> +	add.pitches[0] = ALIGN(add.width * 4, 128);
> +	add.offsets[1] = add.pitches[0] * ALIGN(add.height, 32);
> +	add.pitches[1] = ALIGN(ALIGN(add.width * 4, 32) / 32, 128);
> +
> +	size = add.offsets[1];
> +	size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) / 16, 32);
> +
> +	add.handles[0] = gem_create(fd, size);
> +	igt_assert(add.handles[0]);
> +	add.handles[1] = add.handles[0];
> +
> +	if (drmIoctl(fd, DRM_IOCTL_MODE_ADDFB2, &add) == 0)
> +		*ret = add;
> +	else
> +		gem_close(fd, add.handles[0]);
> +}
> +
>  static void test_handle_input(int fd)
>  {
>  	struct drm_mode_fb_cmd2 add = {};
> @@ -135,6 +167,19 @@ static void test_duplicate_handles(int fd)
>  		gem_close(fd, get2.handle);
>  	}
>  
> +	igt_subtest("getfb-reject-ccs") {
> +		struct drm_mode_fb_cmd2 add_ccs = { };
> +		struct drm_mode_fb_cmd get = { };
> +
> +		get_ccs_fb(fd, &add_ccs);
> +		igt_require(add_ccs.handles[0] != 0);
> +		get.fb_id = add_ccs.fb_id;
> +		do_ioctl_err(fd, DRM_IOCTL_MODE_GETFB, &get, EINVAL);
> +
> +		do_ioctl(fd, DRM_IOCTL_MODE_RMFB, &add_ccs.fb_id);
> +		gem_close(fd, add_ccs.handles[0]);
> +	}
> +
>  	igt_fixture {
>  		do_ioctl(fd, DRM_IOCTL_MODE_RMFB, &add.fb_id);
>  		gem_close(fd, add.handles[0]);
> -- 
> 2.16.2
> 
> _______________________________________________
> igt-dev mailing list
> igt-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev

-- 
Ville Syrjälä
Intel OTC


More information about the igt-dev mailing list