Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Zack Rusin <zack@kde.org>
To: igt-dev@lists.freedesktop.org
Cc: banackm@vmware.com, krastevm@vmware.com, iforbes@vmware.com,
	mombasawalam@vmware.com
Subject: [igt-dev] [PATCH i-g-t v4 0/8] Add vmwgfx support
Date: Wed, 12 Apr 2023 21:24:18 -0400	[thread overview]
Message-ID: <20230413012426.503658-1-zack@kde.org> (raw)

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
v4: Fix two mispellings and spdx placement in generated headers
                              
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

             reply	other threads:[~2023-04-13  1:24 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-13  1:24 Zack Rusin [this message]
2023-04-13  1:24 ` [igt-dev] [PATCH i-g-t v4 1/8] lib/svga: Add generated headers for the svga device Zack Rusin
2023-04-17 12:41   ` Kamil Konieczny
2023-04-13  1:24 ` [igt-dev] [PATCH i-g-t v4 2/8] lib: Add vmwgfx support Zack Rusin
2023-04-13 10:44   ` Kamil Konieczny
2023-04-13  1:24 ` [igt-dev] [PATCH i-g-t v4 3/8] tests/vmwgfx: Add triangle test Zack Rusin
2023-04-13  1:24 ` [igt-dev] [PATCH i-g-t v4 4/8] tests/vmwgfx: Add execution buffer test Zack Rusin
2023-04-13  1:24 ` [igt-dev] [PATCH i-g-t v4 5/8] tests/vmwgfx: Add surface copy test Zack Rusin
2023-04-13  1:24 ` [igt-dev] [PATCH i-g-t v4 6/8] tests/vmwgfx: Add mob stress test Zack Rusin
2023-04-13  1:24 ` [igt-dev] [PATCH i-g-t v4 7/8] tests/vmwgfx: Add reference counting tests Zack Rusin
2023-04-13  1:24 ` [igt-dev] [PATCH i-g-t v4 8/8] lib: Fix igt_kms for drivers with 8 crtc's Zack Rusin
2023-04-17 12:39   ` Kamil Konieczny
2023-04-19  4:41     ` Karthik B S
2023-04-13  2:05 ` [igt-dev] ✗ Fi.CI.BAT: failure for Add vmwgfx support (rev4) Patchwork
2023-04-13  9:47   ` Kamil Konieczny
2023-04-13 11:31     ` Yedireswarapu, SaiX Nandan
2023-04-13 11:28 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-04-13 13:37 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230413012426.503658-1-zack@kde.org \
    --to=zack@kde.org \
    --cc=banackm@vmware.com \
    --cc=iforbes@vmware.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=krastevm@vmware.com \
    --cc=mombasawalam@vmware.com \
    --cc=zackr@vmware.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox