summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2018-07-17 18:50:13 +0300
committerVille Syrjälä <ville.syrjala@linux.intel.com>2018-09-25 16:27:00 +0300
commit42359edda12e5ebf715f2a978944a18baaba6490 (patch)
treece77e77c37ef48be4baa77e9e27b5779724695ea
parentb7298a71744fa5a07acdcdd804f4876153d3c977 (diff)
lib/kms: Pass strides[] to __kms_addfb
Make __kms_addfb() usable with planar formats by passing in the stride for each plane. v2: Handle strides[1] for planar formats in kms_available_modes_crc Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
-rw-r--r--lib/igt_fb.c7
-rw-r--r--lib/ioctl_wrappers.c12
-rw-r--r--lib/ioctl_wrappers.h8
-rw-r--r--tests/kms_available_modes_crc.c15
-rw-r--r--tests/kms_draw_crc.c6
-rw-r--r--tests/prime_vgem.c8
6 files changed, 35 insertions, 21 deletions
diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index ab223865..13fce9f0 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -869,8 +869,13 @@ igt_create_fb_with_bo_size(int fd, int width, int height,
if (tiling != LOCAL_DRM_FORMAT_MOD_NONE &&
tiling != LOCAL_I915_FORMAT_MOD_X_TILED) {
+ uint32_t pitches[4];
+
+ for (i = 0; i < fb_num_planes(f); i++)
+ pitches[i] = fb->stride;
+
do_or_die(__kms_addfb(fd, fb->gem_handle, width, height,
- fb->stride, format, tiling, fb->offsets,
+ format, tiling, pitches, fb->offsets,
LOCAL_DRM_MODE_FB_MODIFIERS, &fb_id));
} else {
uint32_t handles[4];
diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c
index d5d2a4e4..a3485726 100644
--- a/lib/ioctl_wrappers.c
+++ b/lib/ioctl_wrappers.c
@@ -1670,9 +1670,11 @@ void igt_require_fb_modifiers(int fd)
igt_require(has_modifiers);
}
-int __kms_addfb(int fd, uint32_t handle, uint32_t width, uint32_t height,
- uint32_t stride, uint32_t pixel_format, uint64_t modifier,
- uint32_t *offsets, uint32_t flags, uint32_t *buf_id)
+int __kms_addfb(int fd, uint32_t handle,
+ uint32_t width, uint32_t height,
+ uint32_t pixel_format, uint64_t modifier,
+ uint32_t strides[4], uint32_t offsets[4],
+ uint32_t flags, uint32_t *buf_id)
{
struct drm_mode_fb_cmd2 f;
int ret, i;
@@ -1686,12 +1688,12 @@ int __kms_addfb(int fd, uint32_t handle, uint32_t width, uint32_t height,
f.pixel_format = pixel_format;
f.flags = flags;
f.handles[0] = handle;
- f.pitches[0] = stride;
+ f.pitches[0] = strides[0];
f.modifier[0] = modifier;
for (i = 1; i < 4 && offsets && offsets[i]; i++) {
f.handles[i] = handle;
- f.pitches[i] = stride;
+ f.pitches[i] = strides[i];
f.modifier[i] = modifier;
f.offsets[i] = offsets[i];
}
diff --git a/lib/ioctl_wrappers.h b/lib/ioctl_wrappers.h
index 8e2cd380..67bf5056 100644
--- a/lib/ioctl_wrappers.h
+++ b/lib/ioctl_wrappers.h
@@ -235,9 +235,11 @@ void igt_require_fb_modifiers(int fd);
*
* Creates a framebuffer object.
*/
-int __kms_addfb(int fd, uint32_t handle, uint32_t width, uint32_t height,
- uint32_t stride, uint32_t pixel_format, uint64_t modifier,
- uint32_t *offsets, uint32_t flags, uint32_t *buf_id);
+int __kms_addfb(int fd, uint32_t handle,
+ uint32_t width, uint32_t height,
+ uint32_t pixel_format, uint64_t modifier,
+ uint32_t strides[4], uint32_t offsets[4],
+ uint32_t flags, uint32_t *buf_id);
/**
* to_user_pointer:
diff --git a/tests/kms_available_modes_crc.c b/tests/kms_available_modes_crc.c
index b67b4f83..e77bd80f 100644
--- a/tests/kms_available_modes_crc.c
+++ b/tests/kms_available_modes_crc.c
@@ -253,7 +253,8 @@ static bool setup_fb(data_t *data, igt_output_t *output, igt_plane_t *plane,
drmModeModeInfo *mode;
uint64_t w, h;
signed ret, gemsize = 0;
- unsigned tile_width, tile_height, stride;
+ unsigned tile_width, tile_height;
+ uint32_t strides[4] = {};
uint32_t offsets[4] = {};
uint64_t tiling;
int bpp = 0;
@@ -294,24 +295,24 @@ static bool setup_fb(data_t *data, igt_output_t *output, igt_plane_t *plane,
igt_get_fb_tile_size(data->gfx_fd, tiling, bpp,
&tile_width, &tile_height);
- stride = ALIGN(w * bpp / 8, tile_width);
- gemsize = data->size = stride * ALIGN(h, tile_height);
+ strides[0] = ALIGN(w * bpp / 8, tile_width);
+ gemsize = data->size = strides[0] * ALIGN(h, tile_height);
if (fillers[i].bpp == P010 || fillers[i].bpp == NV12) {
offsets[1] = data->size;
+ strides[1] = strides[0];
gemsize = data->size * 2;
}
data->gem_handle = gem_create(data->gfx_fd, gemsize);
ret = __gem_set_tiling(data->gfx_fd, data->gem_handle,
- igt_fb_mod_to_tiling(tiling), stride);
+ igt_fb_mod_to_tiling(tiling), strides[0]);
igt_assert_eq(ret, 0);
ret = __kms_addfb(data->gfx_fd, data->gem_handle, w, h,
- stride, format, tiling,
- offsets, LOCAL_DRM_MODE_FB_MODIFIERS,
- &data->fb.fb_id);
+ format, tiling, strides, offsets,
+ LOCAL_DRM_MODE_FB_MODIFIERS, &data->fb.fb_id);
if(ret < 0) {
igt_info("Creating fb for format %s failed, return code %d\n",
diff --git a/tests/kms_draw_crc.c b/tests/kms_draw_crc.c
index 86dcf392..fb10d7cc 100644
--- a/tests/kms_draw_crc.c
+++ b/tests/kms_draw_crc.c
@@ -156,14 +156,14 @@ static void get_method_crc(enum igt_draw_method method, uint32_t drm_format,
static bool format_is_supported(uint32_t format, uint64_t modifier)
{
uint32_t gem_handle, fb_id;
- unsigned int stride;
+ unsigned int strides[4] = {};
int ret;
gem_handle = igt_create_bo_with_dimensions(drm_fd, 64, 64,
format, modifier,
- 0, NULL, &stride, NULL);
+ 0, NULL, &strides[0], NULL);
ret = __kms_addfb(drm_fd, gem_handle, 64, 64,
- stride, format, modifier, NULL,
+ format, modifier, strides, NULL,
LOCAL_DRM_MODE_FB_MODIFIERS, &fb_id);
drmModeRmFB(drm_fd, fb_id);
gem_close(drm_fd, gem_handle);
diff --git a/tests/prime_vgem.c b/tests/prime_vgem.c
index b821fbb8..b95fd4f5 100644
--- a/tests/prime_vgem.c
+++ b/tests/prime_vgem.c
@@ -750,6 +750,7 @@ static void test_flip(int i915, int vgem, unsigned hang)
signal(SIGHUP, sighandler);
for (int i = 0; i < 2; i++) {
+ uint32_t strides[4] = {};
int fd;
bo[i].width = 1024;
@@ -762,9 +763,12 @@ static void test_flip(int i915, int vgem, unsigned hang)
igt_assert(handle[i]);
close(fd);
+ strides[0] = bo[i].pitch;
+
do_or_die(__kms_addfb(i915, handle[i],
- bo[i].width, bo[i].height, bo[i].pitch,
- DRM_FORMAT_XRGB8888, I915_TILING_NONE, NULL,
+ bo[i].width, bo[i].height,
+ DRM_FORMAT_XRGB8888, I915_TILING_NONE,
+ strides, NULL,
LOCAL_DRM_MODE_FB_MODIFIERS, &fb_id[i]));
igt_assert(fb_id[i]);
}