Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [i-g-t] tests/intel/kms_ccs: Avoid i915 calls on XE device
@ 2023-10-30 16:34 Bhanuprakash Modem
  2023-10-30 20:54 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Bhanuprakash Modem @ 2023-10-30 16:34 UTC (permalink / raw)
  To: igt-dev

For XE device, use XE specific APIs to create the BO.

Fixes: https://gitlab.freedesktop.org/drm/xe/kernel/issues/812
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/intel/kms_ccs.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c
index 09b98fbec..64489b7a3 100644
--- a/tests/intel/kms_ccs.c
+++ b/tests/intel/kms_ccs.c
@@ -33,6 +33,7 @@
 
 #include "i915/gem_create.h"
 #include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
 
 /**
  * SUBTEST: %s-%s-%s
@@ -431,7 +432,10 @@ static void test_bad_ccs_plane(data_t *data, int width, int height, int ccs_plan
 
 	/* Put the CCS buffer on a different BO. */
 	if (data->flags & TEST_BAD_CCS_HANDLE) {
-		bad_ccs_bo = gem_create(data->drm_fd, fb.size);
+		bad_ccs_bo = is_i915_device(data->drm_fd) ?
+				gem_create(data->drm_fd, fb.size) :
+				xe_bo_create_flags(data->drm_fd, 0, fb.size,
+						   visible_vram_if_possible(data->drm_fd, 0));;
 		f.handles[ccs_plane] = bad_ccs_bo;
 	}
 
-- 
2.40.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-11-02 11:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-30 16:34 [igt-dev] [i-g-t] tests/intel/kms_ccs: Avoid i915 calls on XE device Bhanuprakash Modem
2023-10-30 20:54 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
2023-10-30 22:22 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork
2023-10-31  1:04 ` [igt-dev] ✓ CI.xeBAT: success for tests/intel/kms_ccs: Avoid i915 calls on XE device (rev2) Patchwork
2023-10-31  1:07 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-11-01  9:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-11-02 11:45 ` [igt-dev] [i-g-t] tests/intel/kms_ccs: Avoid i915 calls on XE device Juha-Pekka Heikkila

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox