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: petri.latvala@intel.com, banackm@vmware.com, krastevm@vmware.com,
	mombasawalam@vmware.com
Subject: [igt-dev] [PATCH i-g-t v2 0/8] Add vmwgfx support
Date: Wed, 15 Mar 2023 22:26:51 -0400	[thread overview]
Message-ID: <20230316022659.73202-1-zack@kde.org> (raw)

From: Zack Rusin <zackr@vmware.com>

v2: Split up tests into individual changes and fix various reported
warnings
                              
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):
  igt/vmwgfx: Add generated headers for svga device
  igt/vmwgfx: Add vmwgfx support
  igt/vmwgfx: Add triangle test
  igt/vmwgfx: Add execution buffer test
  igt/vmwgfx: Add surface copy test
  igt/vmwgfx: Add mob stress test
  igt/vmwgfx: Add reference counting tests

Zack Rusin (1):
  lib/igt_kms: vmwgfx returns 8 crtc

 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           | 1511 +++++++++++++++++++++++++++
 lib/svga/svga3d_devcaps.h       |  369 +++++++
 lib/svga/svga3d_dx.h            | 1722 +++++++++++++++++++++++++++++++
 lib/svga/svga3d_limits.h        |   83 ++
 lib/svga/svga3d_reg.h           |   44 +
 lib/svga/svga3d_surfacedefs.h   | 1559 ++++++++++++++++++++++++++++
 lib/svga/svga3d_types.h         | 1554 ++++++++++++++++++++++++++++
 lib/svga/svga_escape.h          |   54 +
 lib/svga/svga_overlay.h         |  115 +++
 lib/svga/svga_reg.h             |  897 ++++++++++++++++
 lib/svga/vm_basic_types.h       |  161 +++
 meson.build                     |    7 +
 tests/meson.build               |    2 +
 tests/vmwgfx/execution_buffer.c |  307 ++++++
 tests/vmwgfx/meson.build        |   18 +
 tests/vmwgfx/mob_stress.c       |   99 ++
 tests/vmwgfx/ref_count.c        |  312 ++++++
 tests/vmwgfx/surface_copy.c     |  337 ++++++
 tests/vmwgfx/tri.c              |  210 ++++
 26 files changed, 11010 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/execution_buffer.c
 create mode 100644 tests/vmwgfx/meson.build
 create mode 100644 tests/vmwgfx/mob_stress.c
 create mode 100644 tests/vmwgfx/ref_count.c
 create mode 100644 tests/vmwgfx/surface_copy.c
 create mode 100644 tests/vmwgfx/tri.c

-- 
2.38.1

             reply	other threads:[~2023-03-16  2:27 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-16  2:26 Zack Rusin [this message]
2023-03-16  2:26 ` [igt-dev] [PATCH i-g-t v2 1/8] igt/vmwgfx: Add generated headers for svga device Zack Rusin
     [not found]   ` <DM6PR05MB7099753BF0C4C180B50FE6F5AEBC9@DM6PR05MB7099.namprd05.prod.outlook.com>
2023-03-16 13:03     ` Martin Krastev (VMware)
2023-03-20 17:08       ` Kamil Konieczny
2023-03-17 16:52   ` Kamil Konieczny
2023-03-17 19:34     ` Zack Rusin
2023-04-03 12:57       ` Kamil Konieczny
2023-03-16  2:26 ` [igt-dev] [PATCH i-g-t v2 2/8] igt/vmwgfx: Add vmwgfx support Zack Rusin
     [not found]   ` <DM6PR05MB7099CE80747EDA8D25FA1B80AEBC9@DM6PR05MB7099.namprd05.prod.outlook.com>
2023-03-16 13:17     ` Martin Krastev (VMware)
2023-03-17  8:12   ` Petri Latvala
2023-03-16  2:26 ` [igt-dev] [PATCH i-g-t v2 3/8] igt/vmwgfx: Add triangle test Zack Rusin
     [not found]   ` <DM6PR05MB7099906944F388E2AF52683CAEBC9@DM6PR05MB7099.namprd05.prod.outlook.com>
2023-03-16 13:37     ` Martin Krastev (VMware)
2023-03-17 16:58   ` Kamil Konieczny
2023-03-16  2:26 ` [igt-dev] [PATCH i-g-t v2 4/8] igt/vmwgfx: Add execution buffer test Zack Rusin
     [not found]   ` <DM6PR05MB7099387153CDB475DEC7D7A4AEBC9@DM6PR05MB7099.namprd05.prod.outlook.com>
2023-03-16 13:55     ` Martin Krastev (VMware)
2023-03-16  2:26 ` [igt-dev] [PATCH i-g-t v2 5/8] igt/vmwgfx: Add surface copy test Zack Rusin
     [not found]   ` <DM6PR05MB7099EFBC41B5FCEE66C80C44AEBC9@DM6PR05MB7099.namprd05.prod.outlook.com>
2023-03-16 14:08     ` Martin Krastev (VMware)
2023-03-16  2:26 ` [igt-dev] [PATCH i-g-t v2 6/8] igt/vmwgfx: Add mob stress test Zack Rusin
     [not found]   ` <DM6PR05MB70993CAD6D2EF2959A0522F8AEBC9@DM6PR05MB7099.namprd05.prod.outlook.com>
2023-03-16 14:13     ` Martin Krastev (VMware)
2023-03-16  2:26 ` [igt-dev] [PATCH i-g-t v2 7/8] igt/vmwgfx: Add reference counting tests Zack Rusin
     [not found]   ` <DM6PR05MB70999D64A5D5DC1B22771866AEBC9@DM6PR05MB7099.namprd05.prod.outlook.com>
2023-03-16 14:22     ` Martin Krastev (VMware)
2023-03-16  2:26 ` [igt-dev] [PATCH i-g-t v2 8/8] lib/igt_kms: vmwgfx returns 8 crtc Zack Rusin
     [not found]   ` <DM6PR05MB70990327C01C62C72489C001AEBC9@DM6PR05MB7099.namprd05.prod.outlook.com>
2023-03-16 14:25     ` Martin Krastev (VMware)
2023-03-16 17:39   ` Maaz Mombasawala (VMware)
2023-03-16  3:07 ` [igt-dev] ✓ Fi.CI.BAT: success for Add vmwgfx support (rev2) Patchwork
2023-03-16  8:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " 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=20230316022659.73202-1-zack@kde.org \
    --to=zack@kde.org \
    --cc=banackm@vmware.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=krastevm@vmware.com \
    --cc=mombasawalam@vmware.com \
    --cc=petri.latvala@intel.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