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>
Subject: [PATCH i-g-t v3 02/10] tests/imagination: Add GEM mmap tests
Date: Fri, 17 Jul 2026 16:21:34 +0200 [thread overview]
Message-ID: <20260717-test-imagination-add-support-v3-2-ce69f9ad330c@imgtec.com> (raw)
In-Reply-To: <20260717-test-imagination-add-support-v3-0-ce69f9ad330c@imgtec.com>
From: Matt Coster <matt.coster@imgtec.com>
Add subtests for mmap operations on GEM buffer objects.
Signed-off-by: Matt Coster <matt.coster@imgtec.com>
Signed-off-by: Robert Mazur <robert.mazur@imgtec.com>
---
tests/imagination/pvr_gem.c | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/tests/imagination/pvr_gem.c b/tests/imagination/pvr_gem.c
index 273f4d56f..74bfd4eee 100644
--- a/tests/imagination/pvr_gem.c
+++ b/tests/imagination/pvr_gem.c
@@ -59,6 +59,50 @@ int igt_main()
do_ioctl_err(fd, DRM_IOCTL_PVR_CREATE_BO, &arg, EINVAL);
}
+ igt_describe("Test valid buffer object mapping");
+ igt_subtest("mmap-bo-4096")
+ {
+ size_t size = 4096;
+ uint32_t handle = igt_pvr_ioctl_create_bo(fd, &size);
+
+ off_t offset = igt_pvr_ioctl_get_bo_mmap_offset(fd, handle);
+
+ char *mapped = mmap(NULL, size, PROT_WRITE, MAP_SHARED,
+ fd, offset);
+ igt_assert(mapped != MAP_FAILED);
+
+ /* Test writing to beginning and end of mapped range. */
+ mapped[0] = 0xff;
+ mapped[size - 1] = 0xff;
+
+ munmap(mapped, size);
+ gem_close(fd, handle);
+ }
+
+ igt_describe("Test buffer object mapping with bad handle");
+ igt_subtest("mmap-bo-bad-handle")
+ {
+ struct drm_pvr_ioctl_get_bo_mmap_offset_args arg = {
+ .handle = 0xbad6bad6,
+ };
+
+ do_ioctl_err(fd, DRM_IOCTL_PVR_GET_BO_MMAP_OFFSET, &arg, ENOENT);
+ }
+
+ igt_describe("Test buffer object mapping with bad padding");
+ igt_subtest("mmap-bo-bad-padding")
+ {
+ size_t size = 4096;
+ uint32_t handle = igt_pvr_ioctl_create_bo(fd, &size);
+
+ struct drm_pvr_ioctl_get_bo_mmap_offset_args arg = {
+ .handle = handle,
+ ._padding_4 = 0xbad6bad6,
+ };
+
+ do_ioctl_err(fd, DRM_IOCTL_PVR_GET_BO_MMAP_OFFSET, &arg, EINVAL);
+ }
+
igt_fixture()
{
drm_close_driver(fd);
--
2.43.0
next prev parent reply other threads:[~2026-07-17 14:27 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-17 14:21 [PATCH i-g-t v3 00/10] tests/imagination: Add initial test coverage for Imagination DRM driver Robert Mazur
2026-07-17 14:21 ` [PATCH i-g-t v3 01/10] tests/imagination: Add framework for Imagination tests Robert Mazur
2026-07-22 13:44 ` Kamil Konieczny
[not found] ` <3a08b2b97b01954f2e6afef9244c05680d33e98d.camel@imgtec.com>
2026-07-27 18:18 ` [EXTERNAL] " Kamil Konieczny
2026-07-17 14:21 ` Robert Mazur [this message]
2026-07-22 13:46 ` [PATCH i-g-t v3 02/10] tests/imagination: Add GEM mmap tests Kamil Konieczny
2026-07-17 14:21 ` [PATCH i-g-t v3 03/10] tests/imagination: Add DEV_QUERY tests Robert Mazur
2026-07-22 14:12 ` Kamil Konieczny
2026-07-17 14:21 ` [PATCH i-g-t v3 04/10] tests/imagination: Add GPU ID test Robert Mazur
2026-07-22 14:13 ` Kamil Konieczny
2026-07-17 14:21 ` [PATCH i-g-t v3 05/10] tests/imagination: Add DEV_QUERY heap info tests Robert Mazur
2026-07-22 14:14 ` Kamil Konieczny
2026-07-17 14:21 ` [PATCH i-g-t v3 06/10] tests/imagination: Add DEV_QUERY static data area tests Robert Mazur
2026-07-22 14:21 ` Kamil Konieczny
2026-07-17 14:21 ` [PATCH i-g-t v3 07/10] tests/imagination: Add VM_CONTEXT tests Robert Mazur
2026-07-22 14:22 ` Kamil Konieczny
2026-07-17 14:21 ` [PATCH i-g-t v3 08/10] tests/imagination: Add tests for free list and hwrt creation ioctls Robert Mazur
2026-07-22 14:41 ` Kamil Konieczny
2026-07-17 14:21 ` [PATCH i-g-t v3 09/10] tests/imagination: Add DEV_QUERY quirks and enhancements tests Robert Mazur
2026-07-22 14:43 ` Kamil Konieczny
2026-07-17 14:21 ` [PATCH i-g-t v3 10/10] tests/imagination: Add DEV_QUERY runtime_info tests Robert Mazur
2026-07-22 14:45 ` Kamil Konieczny
2026-07-17 21:16 ` ✓ i915.CI.BAT: success for tests/imagination: Add initial test coverage for Imagination DRM driver (rev3) Patchwork
2026-07-17 21:20 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-18 4:13 ` ✓ Xe.CI.FULL: " Patchwork
2026-07-18 10:57 ` ✓ i915.CI.Full: " 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-v3-2-ce69f9ad330c@imgtec.com \
--to=robert.mazur@imgtec.com \
--cc=alessio.belle@imgtec.com \
--cc=brajesh.gupta@imgtec.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=luigi.santivetti@imgtec.com \
--cc=matt.coster@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