Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v3 0/8] Add vmwgfx support
@ 2023-04-12  2:33 Zack Rusin
  2023-04-12  2:33 ` [igt-dev] [PATCH i-g-t v3 1/8] lib/svga: Add generated headers for the svga device Zack Rusin
                   ` (10 more replies)
  0 siblings, 11 replies; 13+ messages in thread
From: Zack Rusin @ 2023-04-12  2:33 UTC (permalink / raw)
  To: igt-dev; +Cc: banackm, krastevm, iforbes, mombasawalam

From: Zack Rusin <zackr@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

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2023-04-12 17:30 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-12  2:33 [igt-dev] [PATCH i-g-t v3 0/8] Add vmwgfx support Zack Rusin
2023-04-12  2:33 ` [igt-dev] [PATCH i-g-t v3 1/8] lib/svga: Add generated headers for the svga device Zack Rusin
2023-04-12  2:33 ` [igt-dev] [PATCH i-g-t v3 2/8] lib: Add vmwgfx support Zack Rusin
2023-04-12  2:33 ` [igt-dev] [PATCH i-g-t v3 3/8] tests/vmwgfx: Add triangle test Zack Rusin
2023-04-12  2:33 ` [igt-dev] [PATCH i-g-t v3 4/8] tests/vmwgfx: Add execution buffer test Zack Rusin
2023-04-12  2:33 ` [igt-dev] [PATCH i-g-t v3 5/8] tests/vmwgfx: Add surface copy test Zack Rusin
2023-04-12  2:33 ` [igt-dev] [PATCH i-g-t v3 6/8] tests/vmwgfx: Add mob stress test Zack Rusin
2023-04-12  2:33 ` [igt-dev] [PATCH i-g-t v3 7/8] tests/vmwgfx: Add reference counting tests Zack Rusin
2023-04-12  2:33 ` [igt-dev] [PATCH i-g-t v3 8/8] lib: Fix igt_kms for drivers with 8 crtc's Zack Rusin
2023-04-12  3:11 ` [igt-dev] ✓ Fi.CI.BAT: success for Add vmwgfx support (rev3) Patchwork
2023-04-12 14:07 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2023-04-12 16:32 ` [igt-dev] [PATCH i-g-t v3 0/8] Add vmwgfx support Kamil Konieczny
2023-04-12 17:30   ` Zack Rusin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox