[igt-dev] [PATCH i-g-t 3/3] tests/kms_addfb_basic: Check that addfb2 accepts/rejects the expected formats
Ville Syrjala
ville.syrjala at linux.intel.com
Mon Mar 12 20:42:24 UTC 2018
From: Ville Syrjälä <ville.syrjala at linux.intel.com>
Try to create a bunch of fbs with different formats/modfifiers and
make sure sure addfb2 accepts/rejects them in accordance with what
the plane IN_FORMATS blobifiers are advertizing.
We only check "easy" formats (ie. RGB/C8, no YUV/planar etc.). We
also assume that one can always create a 64x64 fb with stride of
64*8 bytes.
Signed-off-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
---
tests/kms_addfb_basic.c | 98 +++++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 95 insertions(+), 3 deletions(-)
diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
index 7d8852f02003..e7c23dc510b8 100644
--- a/tests/kms_addfb_basic.c
+++ b/tests/kms_addfb_basic.c
@@ -41,6 +41,88 @@
uint32_t gem_bo;
uint32_t gem_bo_small;
+static uint64_t modifiers[] = {
+ DRM_FORMAT_MOD_LINEAR,
+ I915_FORMAT_MOD_X_TILED,
+ I915_FORMAT_MOD_Y_TILED,
+ I915_FORMAT_MOD_Yf_TILED,
+ I915_FORMAT_MOD_Y_TILED_CCS,
+ I915_FORMAT_MOD_Yf_TILED_CCS,
+};
+
+static const uint32_t formats[] = {
+ DRM_FORMAT_C8,
+
+ DRM_FORMAT_RGB565,
+ DRM_FORMAT_BGR565,
+
+ DRM_FORMAT_RGB888,
+ DRM_FORMAT_BGR888,
+
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_XBGR8888,
+ DRM_FORMAT_RGBX8888,
+ DRM_FORMAT_BGRX8888,
+ DRM_FORMAT_ARGB8888,
+ DRM_FORMAT_ABGR8888,
+ DRM_FORMAT_RGBA8888,
+ DRM_FORMAT_BGRA8888,
+
+ DRM_FORMAT_XRGB2101010,
+ DRM_FORMAT_XBGR2101010,
+ DRM_FORMAT_RGBX1010102,
+ DRM_FORMAT_BGRX1010102,
+ DRM_FORMAT_ARGB2101010,
+ DRM_FORMAT_ABGR2101010,
+ DRM_FORMAT_RGBA1010102,
+ DRM_FORMAT_BGRA1010102,
+};
+
+/*
+ * make sure addfb2 accepts/rejects every format/modifier
+ * in accordance with the plane IN_FORMATS properties.
+ */
+static void expected_formats(igt_display_t *display)
+{
+ int fd = display->drm_fd;
+ uint32_t handle;
+
+ handle = gem_create(fd, 64*8*64);
+ igt_assert(handle);
+
+ for (int i = 0; i < ARRAY_SIZE(formats); i++) {
+ uint32_t format = formats[i];
+
+ for (int j = 0; j < ARRAY_SIZE(modifiers); j++) {
+ uint64_t modifier = modifiers[j];
+ struct drm_mode_fb_cmd2 f = {
+ .width = 64,
+ .height = 64,
+ .pixel_format = format,
+ .handles[0] = handle,
+ .pitches[0] = 64 * 8,
+ .modifier[0] = modifier,
+ .flags = DRM_MODE_FB_MODIFIERS,
+ };
+ int ret;
+
+ ret = drmIoctl(fd, DRM_IOCTL_MODE_ADDFB2, &f);
+
+ if (igt_display_has_format_mod(display, format, modifier)) {
+ igt_assert_eq(ret, 0);
+ igt_assert_neq(f.fb_id, 0);
+ } else {
+ igt_assert_neq(ret, 0);
+ igt_assert_eq(f.fb_id, 0);
+ }
+
+ drmIoctl(fd, DRM_IOCTL_MODE_RMFB, &f.fb_id);
+ }
+ }
+
+ gem_close(fd, handle);
+}
+
static void invalid_tests(int fd)
{
struct local_drm_mode_fb_cmd2 f = {};
@@ -539,13 +621,17 @@ static void prop_tests(int fd)
}
-int fd;
+static igt_display_t display;
+static int fd;
igt_main
{
- igt_fixture
+ igt_fixture {
fd = drm_open_driver_master(DRIVER_ANY);
+ igt_display_init(&display, fd);
+ }
+
invalid_tests(fd);
pitch_tests(fd);
@@ -560,6 +646,12 @@ igt_main
prop_tests(fd);
- igt_fixture
+ igt_subtest("expected-formats")
+ expected_formats(&display);
+
+ igt_fixture {
+ igt_display_fini(&display);
+
close(fd);
+ }
}
--
2.16.1
More information about the igt-dev
mailing list