From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Matthew Auld Date: Wed, 5 Jan 2022 17:21:06 +0000 Message-Id: <20220105172106.154217-1-matthew.auld@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Subject: [Intel-gfx] [PATCH i-g-t] tests/i915/userptr: fix mapping type List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" To: igt-dev@lists.freedesktop.org Cc: =?UTF-8?q?Thomas=20Hellstr=C3=B6m?= , intel-gfx@lists.freedesktop.org, Priyanka Dandamudi List-ID: We need to use the FIXED mapping type on discrete platforms. Signed-off-by: Matthew Auld Cc: Thomas Hellström Cc: Priyanka Dandamudi --- tests/i915/gem_userptr_blits.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/i915/gem_userptr_blits.c b/tests/i915/gem_userptr_blits.c index 3464db66..a4dca4c0 100644 --- a/tests/i915/gem_userptr_blits.c +++ b/tests/i915/gem_userptr_blits.c @@ -2185,7 +2185,10 @@ static void test_probe(int fd) */ memset(&mmap_offset, 0, sizeof(mmap_offset)); mmap_offset.handle = gem_create(fd, PAGE_SIZE); - mmap_offset.flags = I915_MMAP_OFFSET_WB; + if (gem_has_lmem(fd)) + mmap_offset.flags = I915_MMAP_OFFSET_FIXED; + else + mmap_offset.flags = I915_MMAP_OFFSET_WB; igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_I915_GEM_MMAP_OFFSET, &mmap_offset), 0); for (unsigned long pass = 0; pass < 4 * 4 * 4 * 4 * 4; pass++) { -- 2.31.1