From: Robert Mazur <robert.mazur@imgtec.com>
To: <igt-dev@lists.freedesktop.org>
Cc: Alessio Belle <alessio.belle@imgtec.com>,
Luigi Santivetti <luigi.santivetti@imgtec.com>,
Brajesh Gupta <brajesh.gupta@imgtec.com>,
Robert Mazur <robert.mazur@imgtec.com>,
Matt Coster <matt.coster@imgtec.com>,
Donald Robson <donald.robson@imgtec.com>,
Frank Binns <frank.binns@imgtec.com>,
Sarah Walker <sarah.walker@imgtec.com>
Subject: [PATCH i-g-t v2 00/10] tests/imagination: Add initial test coverage for Imagination DRM driver
Date: Fri, 17 Jul 2026 11:18:13 +0200 [thread overview]
Message-ID: <20260717-test-imagination-add-support-v2-0-e1bf415adcee@imgtec.com> (raw)
This series introduces a new Imagination-specific
set of tests covering core driver functionality exposed through GEM and
IOCTL interfaces. The tests focus on validating userspace-visible APIs.
The series includes:
- Imagination test framework
- GEM mmap coverage
- DEV_QUERY API validation
- GPU ID verification
- Heap information tests
- Static data area tests
- VM context tests
- Free list creation tests
- HWRT creation tests
- Runtime information tests
- Quirks and enhancements query tests
This establishes the foundation for future Imagination driver testing.
Signed-off-by: Robert Mazur <robert.mazur@imgtec.com>
---
Changes in v2:
- Fix threading issue
- Link to v1: https://lore.kernel.org/r/20260717-test-imagination-add-support-v1-0-2f02f9cc3b53@imgtec.com
---
Donald Robson (5):
tests/imagination: Add DEV_QUERY tests
tests/imagination: Add DEV_QUERY static data area tests
tests/imagination: Add VM_CONTEXT tests
tests/imagination: Add DEV_QUERY quirks and enhancements tests
tests/imagination: Add DEV_QUERY runtime_info tests
Frank Binns (1):
tests/imagination: Add GPU ID test
Matt Coster (2):
tests/imagination: Add framework for Imagination tests
tests/imagination: Add GEM mmap tests
Sarah Walker (2):
tests/imagination: Add DEV_QUERY heap info tests
tests/imagination: Add tests for free list and hwrt creation ioctls
docs/platforms.md | 1 +
lib/drmtest.c | 11 ++
lib/drmtest.h | 3 +
lib/igt_pvr.c | 214 +++++++++++++++++++++++++++
lib/igt_pvr.h | 41 ++++++
lib/meson.build | 1 +
meson.build | 9 ++
tests/imagination/meson.build | 21 +++
tests/imagination/pvr_dev_query.c | 99 +++++++++++++
tests/imagination/pvr_free_list.c | 218 ++++++++++++++++++++++++++++
tests/imagination/pvr_gem.c | 111 ++++++++++++++
tests/imagination/pvr_gpu_info.c | 54 +++++++
tests/imagination/pvr_heap_info.c | 169 +++++++++++++++++++++
tests/imagination/pvr_hwrt.c | 168 +++++++++++++++++++++
tests/imagination/pvr_quirks_enhancements.c | 112 ++++++++++++++
tests/imagination/pvr_runtime_info.c | 31 ++++
tests/imagination/pvr_vm_context.c | 79 ++++++++++
tests/meson.build | 2 +
18 files changed, 1344 insertions(+)
---
base-commit: 1e912fa143a35c4238a1fbcf94443175d8ce1d60
change-id: 20260717-test-imagination-add-support-5c2a9e84fadb
Best regards,
--
Robert Mazur <robert.mazur@imgtec.com>
next reply other threads:[~2026-07-17 9:19 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-17 9:18 Robert Mazur [this message]
2026-07-17 9:18 ` [PATCH i-g-t v2 01/10] tests/imagination: Add framework for Imagination tests Robert Mazur
2026-07-17 9:18 ` [PATCH i-g-t v2 02/10] tests/imagination: Add GEM mmap tests Robert Mazur
2026-07-17 9:18 ` [PATCH i-g-t v2 03/10] tests/imagination: Add DEV_QUERY tests Robert Mazur
2026-07-17 9:18 ` [PATCH i-g-t v2 04/10] tests/imagination: Add GPU ID test Robert Mazur
2026-07-17 9:18 ` [PATCH i-g-t v2 05/10] tests/imagination: Add DEV_QUERY heap info tests Robert Mazur
2026-07-17 9:18 ` [PATCH i-g-t v2 06/10] tests/imagination: Add DEV_QUERY static data area tests Robert Mazur
2026-07-17 9:18 ` [PATCH i-g-t v2 07/10] tests/imagination: Add VM_CONTEXT tests Robert Mazur
2026-07-17 9:18 ` [PATCH i-g-t v2 08/10] tests/imagination: Add tests for free list and hwrt creation ioctls Robert Mazur
2026-07-17 9:18 ` [PATCH i-g-t v2 09/10] tests/imagination: Add DEV_QUERY quirks and enhancements tests Robert Mazur
2026-07-17 9:18 ` [PATCH i-g-t v2 10/10] tests/imagination: Add DEV_QUERY runtime_info tests Robert Mazur
2026-07-17 11:10 ` ✓ Xe.CI.BAT: success for tests/imagination: Add initial test coverage for Imagination DRM driver (rev2) Patchwork
2026-07-17 12:06 ` ✓ i915.CI.BAT: " Patchwork
2026-07-17 16:51 ` ✓ Xe.CI.FULL: " Patchwork
2026-07-17 22:08 ` ✗ i915.CI.Full: 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=20260717-test-imagination-add-support-v2-0-e1bf415adcee@imgtec.com \
--to=robert.mazur@imgtec.com \
--cc=alessio.belle@imgtec.com \
--cc=brajesh.gupta@imgtec.com \
--cc=donald.robson@imgtec.com \
--cc=frank.binns@imgtec.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=luigi.santivetti@imgtec.com \
--cc=matt.coster@imgtec.com \
--cc=sarah.walker@imgtec.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