[igt-dev] [PATCH i-g-t v3 0/8] Add vmwgfx support
Zack Rusin
zack at kde.org
Wed Apr 12 02:33:21 UTC 2023
From: Zack Rusin <zackr at vmware.com>
v2: Split up tests into individual changes and fix various reported
warnings
v3: Rename vmw tests and commits, regenerate headers and fix the order
of driver names in drmtest
Introduce explicit support for vmwgfx. The general support is largely
self contained, the only additionl change is to increase number of
available crtcs which is needed by vmwgfx but doesn't affect other
drivers.
Besides the core support add a number of vmwgfx specific tests which
use and test various vmwgfx specific ioctl's.
Maaz Mombasawala (7):
lib/svga: Add generated headers for the svga device
lib: Add vmwgfx support
tests/vmwgfx: Add triangle test
tests/vmwgfx: Add execution buffer test
tests/vmwgfx: Add surface copy test
tests/vmwgfx: Add mob stress test
tests/vmwgfx: Add reference counting tests
Zack Rusin (1):
lib: Fix igt_kms for drivers with 8 crtc's
lib/drmtest.c | 3 +
lib/drmtest.h | 1 +
lib/igt_kms.c | 2 +-
lib/igt_kms.h | 2 +
lib/igt_vmwgfx.c | 1366 +++++++++++++++++++++
lib/igt_vmwgfx.h | 275 +++++
lib/meson.build | 1 +
lib/svga/svga3d_cmd.h | 1513 +++++++++++++++++++++++
lib/svga/svga3d_devcaps.h | 375 ++++++
lib/svga/svga3d_dx.h | 1737 +++++++++++++++++++++++++++
lib/svga/svga3d_limits.h | 81 ++
lib/svga/svga3d_reg.h | 46 +
lib/svga/svga3d_surfacedefs.h | 1559 ++++++++++++++++++++++++
lib/svga/svga3d_types.h | 1560 ++++++++++++++++++++++++
lib/svga/svga_escape.h | 56 +
lib/svga/svga_overlay.h | 117 ++
lib/svga/svga_reg.h | 905 ++++++++++++++
lib/svga/vm_basic_types.h | 161 +++
meson.build | 7 +
tests/meson.build | 2 +
tests/vmwgfx/meson.build | 18 +
tests/vmwgfx/vmw_execution_buffer.c | 313 +++++
tests/vmwgfx/vmw_mob_stress.c | 102 ++
tests/vmwgfx/vmw_ref_count.c | 320 +++++
tests/vmwgfx/vmw_surface_copy.c | 341 ++++++
tests/vmwgfx/vmw_tri.c | 214 ++++
26 files changed, 11076 insertions(+), 1 deletion(-)
create mode 100644 lib/igt_vmwgfx.c
create mode 100644 lib/igt_vmwgfx.h
create mode 100644 lib/svga/svga3d_cmd.h
create mode 100644 lib/svga/svga3d_devcaps.h
create mode 100644 lib/svga/svga3d_dx.h
create mode 100644 lib/svga/svga3d_limits.h
create mode 100644 lib/svga/svga3d_reg.h
create mode 100644 lib/svga/svga3d_surfacedefs.h
create mode 100644 lib/svga/svga3d_types.h
create mode 100644 lib/svga/svga_escape.h
create mode 100644 lib/svga/svga_overlay.h
create mode 100644 lib/svga/svga_reg.h
create mode 100644 lib/svga/vm_basic_types.h
create mode 100644 tests/vmwgfx/meson.build
create mode 100644 tests/vmwgfx/vmw_execution_buffer.c
create mode 100644 tests/vmwgfx/vmw_mob_stress.c
create mode 100644 tests/vmwgfx/vmw_ref_count.c
create mode 100644 tests/vmwgfx/vmw_surface_copy.c
create mode 100644 tests/vmwgfx/vmw_tri.c
--
2.39.2
More information about the igt-dev
mailing list