[igt-dev] [i-g-t] tests/i915/kms_psr: Fix to use proper API to support XE
Bhanuprakash Modem
bhanuprakash.modem at intel.com
Fri Aug 4 08:42:37 UTC 2023
As old API is not aware of XE memory reason, update the
subtest with the new one to create the buffer for XE driver.
intel_buf_create_using_handle() --> intel_buf_create_full()
Fixes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/337
Cc: Jouni Högander <jouni.hogander at intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski at intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem at intel.com>
---
tests/i915/kms_psr.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/tests/i915/kms_psr.c b/tests/i915/kms_psr.c
index 3f8f83b42..57a749ffb 100644
--- a/tests/i915/kms_psr.c
+++ b/tests/i915/kms_psr.c
@@ -35,6 +35,7 @@
#include <stdio.h>
#include <string.h>
#include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
enum operations {
PAGE_FLIP,
@@ -144,6 +145,9 @@ static struct intel_buf *create_buf_from_fb(data_t *data,
{
uint32_t name, handle, tiling, stride, width, height, bpp, size;
struct intel_buf *buf;
+ enum intel_driver driver = buf_ops_get_driver(data->bops);
+ uint64_t region = (driver == INTEL_DRIVER_XE) ?
+ vram_if_possible(data->drm_fd, 0) : -1;
igt_assert_eq(fb->offsets[0], 0);
@@ -159,8 +163,8 @@ static struct intel_buf *create_buf_from_fb(data_t *data,
name = gem_flink(data->drm_fd, fb->gem_handle);
handle = gem_open(data->drm_fd, name);
- buf = intel_buf_create_using_handle(data->bops, handle,
- width, height, bpp, 0, tiling, 0);
+ buf = intel_buf_create_full(data->bops, handle, width, height,
+ bpp, 0, tiling, 0, size, stride, region);
intel_buf_set_ownership(buf, true);
return buf;
--
2.40.0
More information about the igt-dev
mailing list