* [igt-dev] [PATCH i-g-t 0/6] RFC Enable kms_frontbuffer_tracking on XE
@ 2023-05-31 13:48 Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 1/6] RFC tests/i915/kms_frontbuffer_tracking: Add xe support Kunal Joshi
` (7 more replies)
0 siblings, 8 replies; 14+ messages in thread
From: Kunal Joshi @ 2023-05-31 13:48 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
This series is intended to extend kms_frontbuffer_tracking
test to be supported on xe driver
Kunal Joshi (6):
RFC tests/i915/kms_frontbuffer_tracking: Add xe support
RFC Added is_xe to check if xe device
RFC tests/i915/kms_frontbuffer_tracking: xe doesn't support tiling as
of now
tests/i915/kms_frontbuffer_tracking: all gem ioctls are not supported
for xe as of now
RFC lib/ioctl_wrappers: GEM_SET_DOMAIN ioctl not supported on xe
RFC tests/i915/kms_frontbuffer_tracking: xe only supports MMAP_WC,
BLT, RENDER
lib/ioctl_wrappers.c | 7 ++-
tests/i915/kms_frontbuffer_tracking.c | 81 ++++++++++++++++++---------
2 files changed, 62 insertions(+), 26 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t 1/6] RFC tests/i915/kms_frontbuffer_tracking: Add xe support
2023-05-31 13:48 [igt-dev] [PATCH i-g-t 0/6] RFC Enable kms_frontbuffer_tracking on XE Kunal Joshi
@ 2023-05-31 13:48 ` Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 2/6] RFC Added is_xe to check if xe device Kunal Joshi
` (6 subsequent siblings)
7 siblings, 0 replies; 14+ messages in thread
From: Kunal Joshi @ 2023-05-31 13:48 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Add support for DRIVER_XE
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/i915/kms_frontbuffer_tracking.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/i915/kms_frontbuffer_tracking.c b/tests/i915/kms_frontbuffer_tracking.c
index 650e14a7..c2b99670 100644
--- a/tests/i915/kms_frontbuffer_tracking.c
+++ b/tests/i915/kms_frontbuffer_tracking.c
@@ -1338,7 +1338,7 @@ static void init_crcs(enum pixel_format format, enum tiling_type tiling,
static void setup_drm(void)
{
- drm.fd = drm_open_driver_master(DRIVER_INTEL);
+ drm.fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
drm.debugfs = igt_debugfs_dir(drm.fd);
kmstest_set_vt_graphics_mode();
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t 2/6] RFC Added is_xe to check if xe device
2023-05-31 13:48 [igt-dev] [PATCH i-g-t 0/6] RFC Enable kms_frontbuffer_tracking on XE Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 1/6] RFC tests/i915/kms_frontbuffer_tracking: Add xe support Kunal Joshi
@ 2023-05-31 13:48 ` Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 3/6] RFC tests/i915/kms_frontbuffer_tracking: xe doesn't support tiling as of now Kunal Joshi
` (5 subsequent siblings)
7 siblings, 0 replies; 14+ messages in thread
From: Kunal Joshi @ 2023-05-31 13:48 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Added is_xe for test to have XE checks
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/i915/kms_frontbuffer_tracking.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/tests/i915/kms_frontbuffer_tracking.c b/tests/i915/kms_frontbuffer_tracking.c
index c2b99670..3bef46b6 100644
--- a/tests/i915/kms_frontbuffer_tracking.c
+++ b/tests/i915/kms_frontbuffer_tracking.c
@@ -309,6 +309,8 @@ struct {
.stop = true,
};
+static bool is_xe;
+
static drmModeModeInfo *get_connector_smallest_mode(igt_output_t *output)
{
drmModeConnector *c = output->config.connector;
@@ -1341,6 +1343,12 @@ static void setup_drm(void)
drm.fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
drm.debugfs = igt_debugfs_dir(drm.fd);
+ /*
+ * Test has XE checks as we don't have gem IOCTLS
+ * on XE used in this test, for now ignore it if XE
+ */
+ is_xe = is_xe_device(drm.fd);
+
kmstest_set_vt_graphics_mode();
igt_display_require(&drm.display, drm.fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t 3/6] RFC tests/i915/kms_frontbuffer_tracking: xe doesn't support tiling as of now
2023-05-31 13:48 [igt-dev] [PATCH i-g-t 0/6] RFC Enable kms_frontbuffer_tracking on XE Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 1/6] RFC tests/i915/kms_frontbuffer_tracking: Add xe support Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 2/6] RFC Added is_xe to check if xe device Kunal Joshi
@ 2023-05-31 13:48 ` Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 4/6] RFC tests/i915/kms_frontbuffer_tracking: all gem ioctls are not supported for xe " Kunal Joshi
` (4 subsequent siblings)
7 siblings, 0 replies; 14+ messages in thread
From: Kunal Joshi @ 2023-05-31 13:48 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
XE doesn't support tiling as of now, so set tiling to linear
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/i915/kms_frontbuffer_tracking.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tests/i915/kms_frontbuffer_tracking.c b/tests/i915/kms_frontbuffer_tracking.c
index 3bef46b6..5e9fb55a 100644
--- a/tests/i915/kms_frontbuffer_tracking.c
+++ b/tests/i915/kms_frontbuffer_tracking.c
@@ -1349,6 +1349,12 @@ static void setup_drm(void)
*/
is_xe = is_xe_device(drm.fd);
+ /*
+ * XE only support linear tiling
+ */
+ if (is_xe)
+ opt.tiling = TILING_LINEAR;
+
kmstest_set_vt_graphics_mode();
igt_display_require(&drm.display, drm.fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t 4/6] RFC tests/i915/kms_frontbuffer_tracking: all gem ioctls are not supported for xe as of now
2023-05-31 13:48 [igt-dev] [PATCH i-g-t 0/6] RFC Enable kms_frontbuffer_tracking on XE Kunal Joshi
` (2 preceding siblings ...)
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 3/6] RFC tests/i915/kms_frontbuffer_tracking: xe doesn't support tiling as of now Kunal Joshi
@ 2023-05-31 13:48 ` Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 5/6] RFC lib/ioctl_wrappers: GEM_SET_DOMAIN ioctl not supported on xe Kunal Joshi
` (3 subsequent siblings)
7 siblings, 0 replies; 14+ messages in thread
From: Kunal Joshi @ 2023-05-31 13:48 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
XE doesn't support all gem ioctls
Open :- Find replacement for igt_require_gem() for xe
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/i915/kms_frontbuffer_tracking.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/i915/kms_frontbuffer_tracking.c b/tests/i915/kms_frontbuffer_tracking.c
index 5e9fb55a..44e53ccd 100644
--- a/tests/i915/kms_frontbuffer_tracking.c
+++ b/tests/i915/kms_frontbuffer_tracking.c
@@ -3698,7 +3698,8 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
t.flip = FLIP_PAGEFLIP;
t.tiling = opt.tiling;
igt_subtest("basic") {
- igt_require_gem(drm.fd);
+ if (!is_xe)
+ igt_require_gem(drm.fd);
basic_subtest(&t);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t 5/6] RFC lib/ioctl_wrappers: GEM_SET_DOMAIN ioctl not supported on xe
2023-05-31 13:48 [igt-dev] [PATCH i-g-t 0/6] RFC Enable kms_frontbuffer_tracking on XE Kunal Joshi
` (3 preceding siblings ...)
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 4/6] RFC tests/i915/kms_frontbuffer_tracking: all gem ioctls are not supported for xe " Kunal Joshi
@ 2023-05-31 13:48 ` Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 6/6] RFC tests/i915/kms_frontbuffer_tracking: xe only supports MMAP_WC, BLT, RENDER Kunal Joshi
` (2 subsequent siblings)
7 siblings, 0 replies; 14+ messages in thread
From: Kunal Joshi @ 2023-05-31 13:48 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
xe doesn't support GEM_SET_DOMAIN ioctl
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
lib/ioctl_wrappers.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c
index ebd8a2f3..1180d4c6 100644
--- a/lib/ioctl_wrappers.c
+++ b/lib/ioctl_wrappers.c
@@ -534,7 +534,12 @@ int __gem_set_domain(int fd, uint32_t handle, uint32_t read, uint32_t write)
*/
void gem_set_domain(int fd, uint32_t handle, uint32_t read, uint32_t write)
{
- int ret = __gem_set_domain(fd, handle, read, write);
+ int ret;
+
+ if (is_xe_device(fd))
+ return;
+
+ ret = __gem_set_domain(fd, handle, read, write);
if (ret == -ENODEV && gem_has_lmem(fd))
igt_assert_eq(gem_wait(fd, handle, 0), 0);
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t 6/6] RFC tests/i915/kms_frontbuffer_tracking: xe only supports MMAP_WC, BLT, RENDER
2023-05-31 13:48 [igt-dev] [PATCH i-g-t 0/6] RFC Enable kms_frontbuffer_tracking on XE Kunal Joshi
` (4 preceding siblings ...)
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 5/6] RFC lib/ioctl_wrappers: GEM_SET_DOMAIN ioctl not supported on xe Kunal Joshi
@ 2023-05-31 13:48 ` Kunal Joshi
2023-05-31 14:30 ` [igt-dev] ✓ Fi.CI.BAT: success for RFC Enable kms_frontbuffer_tracking on XE Patchwork
2023-06-02 0:16 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Kunal Joshi @ 2023-05-31 13:48 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
xe only supports MMAP_WC, BLT and RENDER methods,
Open :- does draw method give guarantee for fb to be rendered
on return, if not how to assure, ex for RENDER we have intel_bb_sync
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/i915/kms_frontbuffer_tracking.c | 62 +++++++++++++++++----------
1 file changed, 39 insertions(+), 23 deletions(-)
diff --git a/tests/i915/kms_frontbuffer_tracking.c b/tests/i915/kms_frontbuffer_tracking.c
index 44e53ccd..7ddbe4d0 100644
--- a/tests/i915/kms_frontbuffer_tracking.c
+++ b/tests/i915/kms_frontbuffer_tracking.c
@@ -311,6 +311,16 @@ struct {
static bool is_xe;
+/*
+ * returns true if draw method is supported on XE
+ * Currently xe supports on MMAP_WC, BLT and RENDER
+ */
+static bool supported_xe_draw_method(enum igt_draw_method method)
+{
+ return method == IGT_DRAW_MMAP_WC || method == IGT_DRAW_BLT
+ || method == IGT_DRAW_RENDER;
+}
+
static drmModeModeInfo *get_connector_smallest_mode(igt_output_t *output)
{
drmModeConnector *c = output->config.connector;
@@ -1309,10 +1319,12 @@ static void init_crcs(enum pixel_format format, enum tiling_type tiling,
for (r = 0; r < pattern->n_rects; r++)
for (r_ = 0; r_ <= r; r_++)
draw_rect_igt_fb(pattern, &tmp_fbs[r],
- IGT_DRAW_PWRITE, r_);
+ is_xe?IGT_DRAW_RENDER:IGT_DRAW_PWRITE,
+ r_);
} else {
for (r = 0; r < pattern->n_rects; r++)
- draw_rect_igt_fb(pattern, &tmp_fbs[r], IGT_DRAW_PWRITE,
+ draw_rect_igt_fb(pattern, &tmp_fbs[r],
+ is_xe?IGT_DRAW_RENDER:IGT_DRAW_PWRITE,
r);
}
@@ -3181,6 +3193,9 @@ static void basic_subtest(const struct test_mode *t)
fb1 = params->primary.fb;
for (r = 0, method = 0; method < IGT_DRAW_METHOD_COUNT; method++) {
+ if (is_xe && !supported_xe_draw_method(method))
+ continue;
+
if (method == IGT_DRAW_MMAP_GTT &&
!gem_has_mappable_ggtt(drm.fd))
continue;
@@ -3414,29 +3429,30 @@ static const char *tiling_str(enum tiling_type tiling)
}
#define TEST_MODE_ITER_BEGIN(t) \
- t.format = FORMAT_DEFAULT; \
- t.flip = FLIP_PAGEFLIP; \
- t.tiling = opt.tiling;; \
- for (t.feature = 0; t.feature < FEATURE_COUNT; t.feature++) { \
- for (t.pipes = 0; t.pipes < PIPE_COUNT; t.pipes++) { \
- for (t.screen = 0; t.screen < SCREEN_COUNT; t.screen++) { \
- for (t.plane = 0; t.plane < PLANE_COUNT; t.plane++) { \
- for (t.fbs = 0; t.fbs < FBS_COUNT; t.fbs++) { \
- for (t.method = 0; t.method < IGT_DRAW_METHOD_COUNT; t.method++) { \
- if (t.pipes == PIPE_SINGLE && t.screen == SCREEN_SCND) \
- continue; \
- if (t.screen == SCREEN_OFFSCREEN && t.plane != PLANE_PRI) \
- continue; \
- if (!opt.show_hidden && t.pipes == PIPE_DUAL && \
- t.screen == SCREEN_OFFSCREEN) \
- continue; \
- if (!opt.show_hidden && t.feature == FEATURE_NONE) \
- continue; \
- if (!opt.show_hidden && t.fbs == FBS_SHARED && \
- (t.plane == PLANE_CUR || t.plane == PLANE_SPR)) \
+ t.format = FORMAT_DEFAULT; \
+ t.flip = FLIP_PAGEFLIP; \
+ t.tiling = opt.tiling;; \
+ for (t.feature = 0; t.feature < FEATURE_COUNT; t.feature++) { \
+ for (t.pipes = 0; t.pipes < PIPE_COUNT; t.pipes++) { \
+ for (t.screen = 0; t.screen < SCREEN_COUNT; t.screen++) { \
+ for (t.plane = 0; t.plane < PLANE_COUNT; t.plane++) { \
+ for (t.fbs = 0; t.fbs < FBS_COUNT; t.fbs++) { \
+ for (t.method = 0; t.method < IGT_DRAW_METHOD_COUNT; t.method++) { \
+ if (is_xe_device(drm.fd) && !supported_xe_draw_method(t.method)) \
+ continue; \
+ if (t.pipes == PIPE_SINGLE && t.screen == SCREEN_SCND) \
+ continue; \
+ if (t.screen == SCREEN_OFFSCREEN && t.plane != PLANE_PRI) \
+ continue; \
+ if (!opt.show_hidden && t.pipes == PIPE_DUAL && \
+ t.screen == SCREEN_OFFSCREEN) \
+ continue; \
+ if (!opt.show_hidden && t.feature == FEATURE_NONE) \
+ continue; \
+ if (!opt.show_hidden && t.fbs == FBS_SHARED && \
+ (t.plane == PLANE_CUR || t.plane == PLANE_SPR)) \
continue;
-
#define TEST_MODE_ITER_END } } } } } }
struct option long_options[] = {
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for RFC Enable kms_frontbuffer_tracking on XE
2023-05-31 13:48 [igt-dev] [PATCH i-g-t 0/6] RFC Enable kms_frontbuffer_tracking on XE Kunal Joshi
` (5 preceding siblings ...)
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 6/6] RFC tests/i915/kms_frontbuffer_tracking: xe only supports MMAP_WC, BLT, RENDER Kunal Joshi
@ 2023-05-31 14:30 ` Patchwork
2023-06-02 0:16 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2023-05-31 14:30 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4708 bytes --]
== Series Details ==
Series: RFC Enable kms_frontbuffer_tracking on XE
URL : https://patchwork.freedesktop.org/series/118648/
State : success
== Summary ==
CI Bug Log - changes from IGT_7314 -> IGTPW_9080
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/index.html
Participating hosts (36 -> 36)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_9080 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@hangcheck:
- bat-dg2-11: [PASS][1] -> [INCOMPLETE][2] ([i915#7913])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][3] ([i915#1845] / [i915#5354]) +2 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1:
- bat-dg2-8: [PASS][4] -> [FAIL][5] ([i915#7932])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_mocs:
- {bat-mtlp-8}: [DMESG-FAIL][6] ([i915#7059]) -> [PASS][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@migrate:
- bat-adlp-9: [DMESG-FAIL][8] ([i915#7699] / [i915#7913]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/bat-adlp-9/igt@i915_selftest@live@migrate.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/bat-adlp-9/igt@i915_selftest@live@migrate.html
- {bat-mtlp-8}: [DMESG-FAIL][10] ([i915#7699]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/bat-mtlp-8/igt@i915_selftest@live@migrate.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/bat-mtlp-8/igt@i915_selftest@live@migrate.html
* igt@i915_selftest@live@slpc:
- bat-rpls-2: [DMESG-WARN][12] ([i915#6367]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/bat-rpls-2/igt@i915_selftest@live@slpc.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/bat-rpls-2/igt@i915_selftest@live@slpc.html
- bat-rpls-1: [DMESG-WARN][14] ([i915#6367]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/bat-rpls-1/igt@i915_selftest@live@slpc.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/bat-rpls-1/igt@i915_selftest@live@slpc.html
* igt@i915_selftest@live@workarounds:
- bat-rpls-1: [DMESG-WARN][16] ([i915#7852]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/bat-rpls-1/igt@i915_selftest@live@workarounds.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/bat-rpls-1/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#7852]: https://gitlab.freedesktop.org/drm/intel/issues/7852
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7314 -> IGTPW_9080
CI-20190529: 20190529
CI_DRM_13206: 1f26581192d798031ff95fcbce2c2fe4ac953c65 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9080: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/index.html
IGT_7314: ab70dfcdecf93a17fcaddb774855f726325fa0dd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/index.html
[-- Attachment #2: Type: text/html, Size: 5720 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t 3/6] RFC tests/i915/kms_frontbuffer_tracking: xe doesn't support tiling as of now
2023-06-01 5:09 [igt-dev] [PATCH i-g-t 0/6] " Kunal Joshi
@ 2023-06-01 5:09 ` Kunal Joshi
2023-06-01 10:42 ` Hogander, Jouni
0 siblings, 1 reply; 14+ messages in thread
From: Kunal Joshi @ 2023-06-01 5:09 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
XE doesn't support tiling as of now, so set tiling to linear
v2: missed one tiling case
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/i915/kms_frontbuffer_tracking.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/tests/i915/kms_frontbuffer_tracking.c b/tests/i915/kms_frontbuffer_tracking.c
index 3bef46b6..de1a82a9 100644
--- a/tests/i915/kms_frontbuffer_tracking.c
+++ b/tests/i915/kms_frontbuffer_tracking.c
@@ -1349,6 +1349,12 @@ static void setup_drm(void)
*/
is_xe = is_xe_device(drm.fd);
+ /*
+ * XE only support linear tiling
+ */
+ if (is_xe)
+ opt.tiling = TILING_LINEAR;
+
kmstest_set_vt_graphics_mode();
igt_display_require(&drm.display, drm.fd);
@@ -3642,6 +3648,9 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
for (t.tiling = TILING_LINEAR; t.tiling < TILING_COUNT;
t.tiling++) {
+ if (is_xe && t.tiling != TILING_LINEAR)
+ continue;
+
if (t.tiling == TILING_X)
continue;
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/6] RFC tests/i915/kms_frontbuffer_tracking: xe doesn't support tiling as of now
2023-06-01 5:09 ` [igt-dev] [PATCH i-g-t 3/6] RFC tests/i915/kms_frontbuffer_tracking: xe doesn't support tiling as of now Kunal Joshi
@ 2023-06-01 10:42 ` Hogander, Jouni
2023-06-01 11:09 ` Joshi, Kunal1
0 siblings, 1 reply; 14+ messages in thread
From: Hogander, Jouni @ 2023-06-01 10:42 UTC (permalink / raw)
To: Joshi, Kunal1, igt-dev@lists.freedesktop.org
On Thu, 2023-06-01 at 10:39 +0530, Kunal Joshi wrote:
> XE doesn't support tiling as of now, so set tiling to linear
Maybe this should be taken into account in opt_handler as well? I.e.
Trying to use tiling other than liner for Xe should result error.
>
> v2: missed one tiling case
>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
> tests/i915/kms_frontbuffer_tracking.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/tests/i915/kms_frontbuffer_tracking.c
> b/tests/i915/kms_frontbuffer_tracking.c
> index 3bef46b6..de1a82a9 100644
> --- a/tests/i915/kms_frontbuffer_tracking.c
> +++ b/tests/i915/kms_frontbuffer_tracking.c
> @@ -1349,6 +1349,12 @@ static void setup_drm(void)
> */
> is_xe = is_xe_device(drm.fd);
>
> + /*
> + * XE only support linear tiling
> + */
> + if (is_xe)
> + opt.tiling = TILING_LINEAR;
> +
> kmstest_set_vt_graphics_mode();
> igt_display_require(&drm.display, drm.fd);
>
> @@ -3642,6 +3648,9 @@ igt_main_args("", long_options, help_str,
> opt_handler, NULL)
>
> for (t.tiling = TILING_LINEAR; t.tiling <
> TILING_COUNT;
> t.tiling++) {
> + if (is_xe && t.tiling !=
> TILING_LINEAR)
> + continue;
> +
> if (t.tiling == TILING_X)
> continue;
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/6] RFC tests/i915/kms_frontbuffer_tracking: xe doesn't support tiling as of now
2023-06-01 10:42 ` Hogander, Jouni
@ 2023-06-01 11:09 ` Joshi, Kunal1
2023-06-01 11:23 ` Hogander, Jouni
0 siblings, 1 reply; 14+ messages in thread
From: Joshi, Kunal1 @ 2023-06-01 11:09 UTC (permalink / raw)
To: Hogander, Jouni, igt-dev@lists.freedesktop.org
On 6/1/2023 4:12 PM, Hogander, Jouni wrote:
> On Thu, 2023-06-01 at 10:39 +0530, Kunal Joshi wrote:
>> XE doesn't support tiling as of now, so set tiling to linear
> Maybe this should be taken into account in opt_handler as well? I.e.
> Trying to use tiling other than liner for Xe should result error.
Hello Jouni,
This will be over written in setup_drm where we set tiling to linear if xe,
To handle this in opt_handler we will need to open ,close fd,
can i have debug print stating opt.tiling parameter is overridden as XE
supports onlylinear tiling,
how do you see it?
Thanks and Regards
Kunal Joshi
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/6] RFC tests/i915/kms_frontbuffer_tracking: xe doesn't support tiling as of now
2023-06-01 11:09 ` Joshi, Kunal1
@ 2023-06-01 11:23 ` Hogander, Jouni
2023-06-01 11:30 ` Joshi, Kunal1
0 siblings, 1 reply; 14+ messages in thread
From: Hogander, Jouni @ 2023-06-01 11:23 UTC (permalink / raw)
To: Joshi, Kunal1, igt-dev@lists.freedesktop.org
On Thu, 2023-06-01 at 16:39 +0530, Joshi, Kunal1 wrote:
>
> On 6/1/2023 4:12 PM, Hogander, Jouni wrote:
> > On Thu, 2023-06-01 at 10:39 +0530, Kunal Joshi wrote:
> > > XE doesn't support tiling as of now, so set tiling to linear
> > Maybe this should be taken into account in opt_handler as well?
> > I.e.
> > Trying to use tiling other than liner for Xe should result error.
> Hello Jouni,
>
> This will be over written in setup_drm where we set tiling to linear
> if xe,
> To handle this in opt_handler we will need to open ,close fd,
> can i have debug print stating opt.tiling parameter is overridden as
> XE
> supports onlylinear tiling,
> how do you see it?
how about:
igt_assert(is_xe_device() && (opt.tiling == TILING_DEFAULT ||
opt.tiling == TILING_LINEAR));
in setup_drm() ?
>
>
> Thanks and Regards
> Kunal Joshi
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/6] RFC tests/i915/kms_frontbuffer_tracking: xe doesn't support tiling as of now
2023-06-01 11:23 ` Hogander, Jouni
@ 2023-06-01 11:30 ` Joshi, Kunal1
0 siblings, 0 replies; 14+ messages in thread
From: Joshi, Kunal1 @ 2023-06-01 11:30 UTC (permalink / raw)
To: Hogander, Jouni, igt-dev@lists.freedesktop.org
On 6/1/2023 4:53 PM, Hogander, Jouni wrote:
> On Thu, 2023-06-01 at 16:39 +0530, Joshi, Kunal1 wrote:
>> On 6/1/2023 4:12 PM, Hogander, Jouni wrote:
>>> On Thu, 2023-06-01 at 10:39 +0530, Kunal Joshi wrote:
>>>> XE doesn't support tiling as of now, so set tiling to linear
>>> Maybe this should be taken into account in opt_handler as well?
>>> I.e.
>>> Trying to use tiling other than liner for Xe should result error.
>> Hello Jouni,
>>
>> This will be over written in setup_drm where we set tiling to linear
>> if xe,
>> To handle this in opt_handler we will need to open ,close fd,
>> can i have debug print stating opt.tiling parameter is overridden as
>> XE
>> supports onlylinear tiling,
>> how do you see it?
> how about:
>
> igt_assert(is_xe_device() && (opt.tiling == TILING_DEFAULT ||
> opt.tiling == TILING_LINEAR));
>
> in setup_drm() ?
>
Ok Jouni, will use this approach.
Thanks and Regards
Kunal Joshi
^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for RFC Enable kms_frontbuffer_tracking on XE
2023-05-31 13:48 [igt-dev] [PATCH i-g-t 0/6] RFC Enable kms_frontbuffer_tracking on XE Kunal Joshi
` (6 preceding siblings ...)
2023-05-31 14:30 ` [igt-dev] ✓ Fi.CI.BAT: success for RFC Enable kms_frontbuffer_tracking on XE Patchwork
@ 2023-06-02 0:16 ` Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2023-06-02 0:16 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 20642 bytes --]
== Series Details ==
Series: RFC Enable kms_frontbuffer_tracking on XE
URL : https://patchwork.freedesktop.org/series/118648/
State : success
== Summary ==
CI Bug Log - changes from IGT_7314_full -> IGTPW_9080_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/index.html
Participating hosts (8 -> 7)
------------------------------
Missing (1): shard-rkl0
Known issues
------------
Here are the changes found in IGTPW_9080_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [PASS][1] -> [FAIL][2] ([i915#2846])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-glk3/igt@gem_exec_fair@basic-deadline.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-glk3/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-apl: [PASS][3] -> [FAIL][4] ([i915#2842])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-apl4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-apl: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl3/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_pwrite@basic-exhaustion:
- shard-apl: NOTRUN -> [WARN][6] ([i915#2658])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_userptr_blits@vma-merge:
- shard-apl: NOTRUN -> [FAIL][7] ([i915#3318])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl6/igt@gem_userptr_blits@vma-merge.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-apl: NOTRUN -> [SKIP][8] ([fdo#109271]) +58 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_content_protection@lic@pipe-a-dp-1:
- shard-apl: NOTRUN -> [TIMEOUT][9] ([i915#7173])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl3/igt@kms_content_protection@lic@pipe-a-dp-1.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][10] -> [FAIL][11] ([i915#2346])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][12] -> [FAIL][13] ([i915#2122])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-glk8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-glk6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1:
- shard-apl: [PASS][14] -> [FAIL][15] ([i915#79])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-apl: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#4579]) +2 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][17] ([fdo#109271]) +47 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-snb2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_plane_scaling@plane-upscale-with-modifiers-20x20@pipe-b-vga-1:
- shard-snb: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#4579]) +16 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-snb2/igt@kms_plane_scaling@plane-upscale-with-modifiers-20x20@pipe-b-vga-1.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-apl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#658])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
#### Possible fixes ####
* igt@gem_ctx_freq@sysfs:
- {shard-dg1}: [FAIL][20] ([i915#6786]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-dg1-15/igt@gem_ctx_freq@sysfs.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-dg1-16/igt@gem_ctx_freq@sysfs.html
* igt@gem_exec_endless@dispatch@vcs0:
- {shard-tglu}: [TIMEOUT][22] ([i915#3778] / [i915#7941]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-tglu-5/igt@gem_exec_endless@dispatch@vcs0.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-tglu-2/igt@gem_exec_endless@dispatch@vcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- {shard-rkl}: [FAIL][24] ([i915#2842]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- {shard-tglu}: [ABORT][26] ([i915#7975] / [i915#8213]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-tglu-6/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- {shard-dg1}: [DMESG-WARN][28] ([i915#4936] / [i915#5493]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [ABORT][30] ([i915#5566]) -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-apl7/igt@gen9_exec_parse@allowed-single.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl4/igt@gen9_exec_parse@allowed-single.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][32] ([i915#4528]) -> [PASS][33]
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@bcs0:
- {shard-dg1}: [FAIL][34] ([i915#3591]) -> [PASS][35] +1 similar issue
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
* igt@i915_pm_rpm@dpms-lpsp:
- {shard-rkl}: [SKIP][36] ([i915#1397]) -> [PASS][37]
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-rkl-4/igt@i915_pm_rpm@dpms-lpsp.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][38] ([i915#2346]) -> [PASS][39]
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][40] ([i915#2346]) -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_hdmi_inject@inject-audio:
- {shard-tglu}: [SKIP][42] ([i915#433]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-tglu-2/igt@kms_hdmi_inject@inject-audio.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-tglu-10/igt@kms_hdmi_inject@inject-audio.html
* igt@perf_pmu@busy-idle-check-all@vecs0:
- {shard-dg1}: [FAIL][44] ([i915#4521]) -> [PASS][45] +2 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-dg1-13/igt@perf_pmu@busy-idle-check-all@vecs0.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vecs0.html
#### Warnings ####
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [FAIL][46] ([i915#4275]) -> [SKIP][47] ([fdo#109271])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-apl6/igt@i915_pm_dc@dc9-dpms.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
* igt@kms_content_protection@mei_interface:
- shard-apl: [SKIP][48] ([fdo#109271] / [i915#4579]) -> [SKIP][49] ([fdo#109271])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-apl1/igt@kms_content_protection@mei_interface.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-apl3/igt@kms_content_protection@mei_interface.html
- shard-snb: [SKIP][50] ([fdo#109271] / [i915#4579]) -> [SKIP][51] ([fdo#109271])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-snb4/igt@kms_content_protection@mei_interface.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-snb4/igt@kms_content_protection@mei_interface.html
- shard-glk: [SKIP][52] ([fdo#109271] / [i915#4579]) -> [SKIP][53] ([fdo#109271])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-glk1/igt@kms_content_protection@mei_interface.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-glk4/igt@kms_content_protection@mei_interface.html
* igt@kms_hdmi_inject@inject-audio:
- shard-glk: [FAIL][54] -> [SKIP][55] ([fdo#109271])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7314/shard-glk4/igt@kms_hdmi_inject@inject-audio.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/shard-glk4/igt@kms_hdmi_inject@inject-audio.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7314 -> IGTPW_9080
CI-20190529: 20190529
CI_DRM_13206: 1f26581192d798031ff95fcbce2c2fe4ac953c65 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9080: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/index.html
IGT_7314: ab70dfcdecf93a17fcaddb774855f726325fa0dd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9080/index.html
[-- Attachment #2: Type: text/html, Size: 16343 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2023-06-02 0:16 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-31 13:48 [igt-dev] [PATCH i-g-t 0/6] RFC Enable kms_frontbuffer_tracking on XE Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 1/6] RFC tests/i915/kms_frontbuffer_tracking: Add xe support Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 2/6] RFC Added is_xe to check if xe device Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 3/6] RFC tests/i915/kms_frontbuffer_tracking: xe doesn't support tiling as of now Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 4/6] RFC tests/i915/kms_frontbuffer_tracking: all gem ioctls are not supported for xe " Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 5/6] RFC lib/ioctl_wrappers: GEM_SET_DOMAIN ioctl not supported on xe Kunal Joshi
2023-05-31 13:48 ` [igt-dev] [PATCH i-g-t 6/6] RFC tests/i915/kms_frontbuffer_tracking: xe only supports MMAP_WC, BLT, RENDER Kunal Joshi
2023-05-31 14:30 ` [igt-dev] ✓ Fi.CI.BAT: success for RFC Enable kms_frontbuffer_tracking on XE Patchwork
2023-06-02 0:16 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2023-06-01 5:09 [igt-dev] [PATCH i-g-t 0/6] " Kunal Joshi
2023-06-01 5:09 ` [igt-dev] [PATCH i-g-t 3/6] RFC tests/i915/kms_frontbuffer_tracking: xe doesn't support tiling as of now Kunal Joshi
2023-06-01 10:42 ` Hogander, Jouni
2023-06-01 11:09 ` Joshi, Kunal1
2023-06-01 11:23 ` Hogander, Jouni
2023-06-01 11:30 ` Joshi, Kunal1
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox