[igt-dev] [PATCH i-g-t v3 6/8] tests/vmwgfx: Add mob stress test
Zack Rusin
zack at kde.org
Wed Apr 12 02:33:27 UTC 2023
From: Maaz Mombasawala <mombasawalam at vmware.com>
This test checks the limits of the number and capacity of mobs that
vmwgfx can support.
Signed-off-by: Zack Rusin <zackr at vmware.com>
Signed-off-by: Maaz Mombasawala <mombasawalam at vmware.com>
Reviewed-by: Martin Krastev <krastevm at vmware.com>
---
tests/vmwgfx/meson.build | 3 +-
tests/vmwgfx/vmw_mob_stress.c | 102 ++++++++++++++++++++++++++++++++++
2 files changed, 104 insertions(+), 1 deletion(-)
create mode 100644 tests/vmwgfx/vmw_mob_stress.c
diff --git a/tests/vmwgfx/meson.build b/tests/vmwgfx/meson.build
index cc0718b2..1cb662e3 100644
--- a/tests/vmwgfx/meson.build
+++ b/tests/vmwgfx/meson.build
@@ -2,7 +2,8 @@
vmwgfx_progs = [
'vmw_tri',
'vmw_execution_buffer',
- 'vmw_surface_copy'
+ 'vmw_surface_copy',
+ 'vmw_mob_stress'
]
vmwgfx_deps = test_deps
diff --git a/tests/vmwgfx/vmw_mob_stress.c b/tests/vmwgfx/vmw_mob_stress.c
new file mode 100644
index 00000000..4af23d6f
--- /dev/null
+++ b/tests/vmwgfx/vmw_mob_stress.c
@@ -0,0 +1,102 @@
+// SPDX-License-Identifier: GPL-2.0 OR MIT
+/**********************************************************
+ * Copyright 2021-2022 VMware, Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person
+ * obtaining a copy of this software and associated documentation
+ * files (the "Software"), to deal in the Software without
+ * restriction, including without limitation the rights to use, copy,
+ * modify, merge, publish, distribute, sublicense, and/or sell copies
+ * of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ **********************************************************/
+
+#include "igt_vmwgfx.h"
+
+IGT_TEST_DESCRIPTION("Test memory limits on mob's.");
+
+static void test_triangle_render(struct vmw_svga_device *device, int32 cid)
+{
+ uint8 *rendered_tri;
+ struct vmw_default_objects objects;
+
+ vmw_create_default_objects(device, cid, &objects,
+ &vmw_default_rect_size);
+ rendered_tri = vmw_triangle_draw(device, cid, &objects, true);
+ vmw_triangle_assert_values(rendered_tri, objects.color_rt);
+
+ free(rendered_tri);
+ vmw_destroy_default_objects(device, &objects);
+}
+
+igt_main
+{
+ struct vmw_svga_device device;
+ int32 cid;
+ uint64 max_mob_mem;
+ uint64 max_mob_size;
+
+ igt_fixture
+ {
+ vmw_svga_device_init(&device, vmw_svga_device_node_render);
+ igt_require(device.drm_fd != -1);
+
+ cid = vmw_ioctl_context_create(device.drm_fd);
+ igt_require(cid != SVGA3D_INVALID_ID);
+
+ max_mob_mem = vmw_ioctl_get_param(device.drm_fd,
+ DRM_VMW_PARAM_MAX_MOB_MEMORY);
+ max_mob_size = vmw_ioctl_get_param(device.drm_fd,
+ DRM_VMW_PARAM_MAX_MOB_SIZE);
+ }
+
+ igt_describe("Test whether max memory allocations cause problems.");
+ igt_subtest("max_mob_mem_stress")
+ {
+ uint32 mob_num;
+ struct vmw_mob **mob_objs;
+ int i;
+
+ mob_num = max_mob_mem / max_mob_size;
+ mob_objs = (struct vmw_mob **)calloc(mob_num,
+ sizeof(struct vmw_mob *));
+
+ /* Enough mobs to reach max_mob_mem */
+ for (i = 0; i < mob_num; i++) {
+ char *readback;
+
+ mob_objs[i] = vmw_ioctl_mob_create(device.drm_fd,
+ max_mob_size);
+ /* Writing mob to ensure it gets created */
+ readback =
+ vmw_ioctl_mob_map(device.drm_fd, mob_objs[i]);
+ memset(readback, 0, mob_objs[i]->size);
+ vmw_ioctl_mob_unmap(mob_objs[i]);
+ }
+
+ test_triangle_render(&device, cid);
+
+ for (i = 0; i < mob_num; i++)
+ vmw_ioctl_mob_close_handle(device.drm_fd, mob_objs[i]);
+ free(mob_objs);
+ }
+
+ igt_fixture
+ {
+ vmw_ioctl_context_destroy(device.drm_fd, cid);
+ vmw_svga_device_fini(&device);
+ }
+}
--
2.39.2
More information about the igt-dev
mailing list