* [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset
@ 2023-08-07 3:58 janga.rahul.kumar
2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's janga.rahul.kumar
` (6 more replies)
0 siblings, 7 replies; 18+ messages in thread
From: janga.rahul.kumar @ 2023-08-07 3:58 UTC (permalink / raw)
To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: sai.gowtham.ch, kunal1.joshi
From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Add library support for hang and resetting all the GT's.
v2:
Create xe library for GT which contains hang and reset helpers.(kamil)
Create separate patch for igt gt lib changes.(kamil)
Extend hang library to support all rings.
Correct Indentation issues. (kamil/Anna)
Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Anna Karas <anna.karas@intel.com>
Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Tested-by: Kunal Joshi <kunal1.joshi@intel.com>
Janga Rahul Kumar (3):
lib/xe: Add support to reset all GT's
lib/xe: Add hang library support
lib/igt_gt: Extend hang library support to XE
lib/igt_gt.c | 26 ++++++++--
lib/meson.build | 1 +
lib/xe/xe_gt.c | 126 ++++++++++++++++++++++++++++++++++++++++++++++++
lib/xe/xe_gt.h | 32 ++++++++++++
4 files changed, 181 insertions(+), 4 deletions(-)
create mode 100644 lib/xe/xe_gt.c
create mode 100644 lib/xe/xe_gt.h
--
2.25.1
^ permalink raw reply [flat|nested] 18+ messages in thread* [igt-dev] [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's 2023-08-07 3:58 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar @ 2023-08-07 3:58 ` janga.rahul.kumar 2023-08-10 10:17 ` Ch, Sai Gowtham 2023-08-10 10:30 ` Ch, Sai Gowtham 2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 2/3] lib/xe: Add hang library support janga.rahul.kumar ` (5 subsequent siblings) 6 siblings, 2 replies; 18+ messages in thread From: janga.rahul.kumar @ 2023-08-07 3:58 UTC (permalink / raw) To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: sai.gowtham.ch, kunal1.joshi From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Introduce xe gt library. Add support to check GT reset and force reset all GT's. Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Cc: Kunal Joshi <kunal1.joshi@intel.com> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Anna Karas <anna.karas@intel.com> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Tested-by: Kunal Joshi <kunal1.joshi@intel.com> --- lib/meson.build | 1 + lib/xe/xe_gt.c | 62 +++++++++++++++++++++++++++++++++++++++++++++++++ lib/xe/xe_gt.h | 27 +++++++++++++++++++++ 3 files changed, 90 insertions(+) create mode 100644 lib/xe/xe_gt.c create mode 100644 lib/xe/xe_gt.h diff --git a/lib/meson.build b/lib/meson.build index ce11c0715..b7bfcf4f0 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -103,6 +103,7 @@ lib_sources = [ 'igt_dsc.c', 'xe/xe_compute.c', 'xe/xe_compute_square_kernels.c', + 'xe/xe_gt.c', 'xe/xe_ioctl.c', 'xe/xe_query.c', 'xe/xe_spin.c', diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c new file mode 100644 index 000000000..9cad739be --- /dev/null +++ b/lib/xe/xe_gt.c @@ -0,0 +1,62 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2023 Intel Corporation + * + * Authors: + * Janga Rahul Kumar <janga.rahul.kumar@intel.com> + */ + +#include <fcntl.h> + +#include "xe_gt.h" + +/** + * has_xe_gt_reset: + * @fd: open xe drm file descriptor + * + * Check gt force reset sysfs entry is available or not + * + * Returns: reset sysfs entry available + */ +bool has_xe_gt_reset(int fd) +{ + char reset_sysfs_path[100]; + struct stat st; + int gt; + int reset_sysfs_fd = -1; + int sysfs_fd = -1; + + igt_assert_eq(fstat(fd, &st), 0); + sysfs_fd = igt_sysfs_open(fd); + + igt_assert(sysfs_fd != -1); + xe_for_each_gt(fd, gt) { + sprintf(reset_sysfs_path, "/sys/kernel/debug/dri/%d/gt%d/force_reset", + minor(st.st_rdev), gt); + reset_sysfs_fd = openat(sysfs_fd, reset_sysfs_path, O_RDONLY); + + if (reset_sysfs_fd == -1) { + close(sysfs_fd); + return 0; + } + + close(reset_sysfs_fd); + } + + close(sysfs_fd); + return 1; +} + +/** + * xe_force_gt_reset_all: + * + * Forces reset of all the GT's. + */ +void xe_force_gt_reset_all(int xe_fd) +{ + int gt; + + xe_for_each_gt(xe_fd, gt) + xe_force_gt_reset(xe_fd, gt); +} + diff --git a/lib/xe/xe_gt.h b/lib/xe/xe_gt.h new file mode 100644 index 000000000..e075ebf62 --- /dev/null +++ b/lib/xe/xe_gt.h @@ -0,0 +1,27 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2023 Intel Corporation + * + * Authors: + * Janga Rahul Kumar <janga.rahul.kumar@intel.com> + */ + +#include <dirent.h> +#include <stdint.h> +#include <sys/stat.h> + +#include "igt_core.h" +#include "igt_sysfs.h" +#include "xe_ioctl.h" +#include "xe_query.h" + +#ifdef __linux__ +#include <sys/sysmacros.h> +#else +#define major(__v__) (((__v__) >> 8) & 0xff) +#define minor(__v__) ((__v__) & 0xff) +#endif + +bool has_xe_gt_reset(int fd); +void xe_force_gt_reset_all(int fd); + -- 2.25.1 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's 2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's janga.rahul.kumar @ 2023-08-10 10:17 ` Ch, Sai Gowtham 2023-08-11 13:52 ` Maarten Lankhorst 2023-08-10 10:30 ` Ch, Sai Gowtham 1 sibling, 1 reply; 18+ messages in thread From: Ch, Sai Gowtham @ 2023-08-10 10:17 UTC (permalink / raw) To: Kumar, Janga Rahul, igt-dev@lists.freedesktop.org, Gandi, Ramadevi Cc: Joshi, Kunal1 -----Original Message----- From: Kumar, Janga Rahul <janga.rahul.kumar@intel.com> Sent: Monday, August 7, 2023 9:28 AM To: igt-dev@lists.freedesktop.org; Gandi, Ramadevi <ramadevi.gandi@intel.com>; Kumar, Janga Rahul <janga.rahul.kumar@intel.com> Cc: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; Joshi, Kunal1 <kunal1.joshi@intel.com>; kamil.konieczny@linux.intel.com; Karas, Anna <anna.karas@intel.com> Subject: [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Introduce xe gt library. Add support to check GT reset and force reset all GT's. Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Cc: Kunal Joshi <kunal1.joshi@intel.com> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Anna Karas <anna.karas@intel.com> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Tested-by: Kunal Joshi <kunal1.joshi@intel.com> --- lib/meson.build | 1 + lib/xe/xe_gt.c | 62 +++++++++++++++++++++++++++++++++++++++++++++++++ lib/xe/xe_gt.h | 27 +++++++++++++++++++++ 3 files changed, 90 insertions(+) create mode 100644 lib/xe/xe_gt.c create mode 100644 lib/xe/xe_gt.h diff --git a/lib/meson.build b/lib/meson.build index ce11c0715..b7bfcf4f0 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -103,6 +103,7 @@ lib_sources = [ 'igt_dsc.c', 'xe/xe_compute.c', 'xe/xe_compute_square_kernels.c', + 'xe/xe_gt.c', 'xe/xe_ioctl.c', 'xe/xe_query.c', 'xe/xe_spin.c', diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c new file mode 100644 index 000000000..9cad739be --- /dev/null +++ b/lib/xe/xe_gt.c @@ -0,0 +1,62 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2023 Intel Corporation + * + * Authors: + * Janga Rahul Kumar <janga.rahul.kumar@intel.com> + */ + +#include <fcntl.h> + I don’t think new line is needed here. +#include "xe_gt.h" + +/** + * has_xe_gt_reset: + * @fd: open xe drm file descriptor + * + * Check gt force reset sysfs entry is available or not + * + * Returns: reset sysfs entry available */ bool has_xe_gt_reset(int +fd) { + char reset_sysfs_path[100]; + struct stat st; + int gt; + int reset_sysfs_fd = -1; + int sysfs_fd = -1; + + igt_assert_eq(fstat(fd, &st), 0); + sysfs_fd = igt_sysfs_open(fd); + + igt_assert(sysfs_fd != -1); + xe_for_each_gt(fd, gt) { + sprintf(reset_sysfs_path, "/sys/kernel/debug/dri/%d/gt%d/force_reset", + minor(st.st_rdev), gt); + reset_sysfs_fd = openat(sysfs_fd, reset_sysfs_path, O_RDONLY); + + if (reset_sysfs_fd == -1) { + close(sysfs_fd); + return 0; + } + + close(reset_sysfs_fd); + } + + close(sysfs_fd); + return 1; +} + +/** + * xe_force_gt_reset_all: + * + * Forces reset of all the GT's. + */ +void xe_force_gt_reset_all(int xe_fd) +{ + int gt; + + xe_for_each_gt(xe_fd, gt) + xe_force_gt_reset(xe_fd, gt); +} + diff --git a/lib/xe/xe_gt.h b/lib/xe/xe_gt.h new file mode 100644 index 000000000..e075ebf62 --- /dev/null +++ b/lib/xe/xe_gt.h @@ -0,0 +1,27 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2023 Intel Corporation + * + * Authors: + * Janga Rahul Kumar <janga.rahul.kumar@intel.com> + */ + +#include <dirent.h> +#include <stdint.h> +#include <sys/stat.h> + +#include "igt_core.h" +#include "igt_sysfs.h" +#include "xe_ioctl.h" +#include "xe_query.h" + Headers like xe_query and igt_core can be chopped. Rest looks good to me. Reviewed-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> +#ifdef __linux__ +#include <sys/sysmacros.h> +#else +#define major(__v__) (((__v__) >> 8) & 0xff) #define minor(__v__) +((__v__) & 0xff) #endif + +bool has_xe_gt_reset(int fd); +void xe_force_gt_reset_all(int fd); + -- 2.25.1 ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's 2023-08-10 10:17 ` Ch, Sai Gowtham @ 2023-08-11 13:52 ` Maarten Lankhorst 2023-08-11 14:01 ` Matthew Brost 0 siblings, 1 reply; 18+ messages in thread From: Maarten Lankhorst @ 2023-08-11 13:52 UTC (permalink / raw) To: Ch, Sai Gowtham, Kumar, Janga Rahul, igt-dev@lists.freedesktop.org, Gandi, Ramadevi Cc: Joshi, Kunal1 Hey, Den 2023-08-10 kl. 12:17, skrev Ch, Sai Gowtham: > > -----Original Message----- > From: Kumar, Janga Rahul <janga.rahul.kumar@intel.com> > Sent: Monday, August 7, 2023 9:28 AM > To: igt-dev@lists.freedesktop.org; Gandi, Ramadevi <ramadevi.gandi@intel.com>; Kumar, Janga Rahul <janga.rahul.kumar@intel.com> > Cc: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; Joshi, Kunal1 <kunal1.joshi@intel.com>; kamil.konieczny@linux.intel.com; Karas, Anna <anna.karas@intel.com> > Subject: [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's > > From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> > > Introduce xe gt library. > > Add support to check GT reset and force reset all GT's. > > Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > Cc: Kunal Joshi <kunal1.joshi@intel.com> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Cc: Anna Karas <anna.karas@intel.com> > Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> > Tested-by: Kunal Joshi <kunal1.joshi@intel.com> > --- > lib/meson.build | 1 + > lib/xe/xe_gt.c | 62 +++++++++++++++++++++++++++++++++++++++++++++++++ > lib/xe/xe_gt.h | 27 +++++++++++++++++++++ > 3 files changed, 90 insertions(+) > create mode 100644 lib/xe/xe_gt.c > create mode 100644 lib/xe/xe_gt.h > > diff --git a/lib/meson.build b/lib/meson.build index ce11c0715..b7bfcf4f0 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -103,6 +103,7 @@ lib_sources = [ > 'igt_dsc.c', > 'xe/xe_compute.c', > 'xe/xe_compute_square_kernels.c', > + 'xe/xe_gt.c', > 'xe/xe_ioctl.c', > 'xe/xe_query.c', > 'xe/xe_spin.c', > diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c new file mode 100644 index 000000000..9cad739be > --- /dev/null > +++ b/lib/xe/xe_gt.c > @@ -0,0 +1,62 @@ > +/* SPDX-License-Identifier: MIT */ > +/* > + * Copyright © 2023 Intel Corporation > + * > + * Authors: > + * Janga Rahul Kumar <janga.rahul.kumar@intel.com> > + */ > + > +#include <fcntl.h> > + > I don’t think new line is needed here. > +#include "xe_gt.h" > + > +/** > + * has_xe_gt_reset: > + * @fd: open xe drm file descriptor > + * > + * Check gt force reset sysfs entry is available or not > + * > + * Returns: reset sysfs entry available */ bool has_xe_gt_reset(int > +fd) { > + char reset_sysfs_path[100]; > + struct stat st; > + int gt; > + int reset_sysfs_fd = -1; > + int sysfs_fd = -1; > + > + igt_assert_eq(fstat(fd, &st), 0); > + sysfs_fd = igt_sysfs_open(fd); > + > + igt_assert(sysfs_fd != -1); > + xe_for_each_gt(fd, gt) { > + sprintf(reset_sysfs_path, "/sys/kernel/debug/dri/%d/gt%d/force_reset", > + minor(st.st_rdev), gt); > + reset_sysfs_fd = openat(sysfs_fd, reset_sysfs_path, O_RDONLY); > + > + if (reset_sysfs_fd == -1) { > + close(sysfs_fd); > + return 0; > + } > + > + close(reset_sysfs_fd); > + } > + > + close(sysfs_fd); > + return 1; > +} We can reset a gt by only opening a file in debugfs? That seems like a terrible api, we should probably force it to only reset by writing 1 or something instead.. Cheers, ~Maarten ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's 2023-08-11 13:52 ` Maarten Lankhorst @ 2023-08-11 14:01 ` Matthew Brost 2023-08-14 17:30 ` Kumar, Janga Rahul 0 siblings, 1 reply; 18+ messages in thread From: Matthew Brost @ 2023-08-11 14:01 UTC (permalink / raw) To: Maarten Lankhorst Cc: igt-dev@lists.freedesktop.org, Ch, Sai Gowtham, Joshi, Kunal1, Gandi, Ramadevi On Fri, Aug 11, 2023 at 03:52:16PM +0200, Maarten Lankhorst wrote: > Hey, > > Den 2023-08-10 kl. 12:17, skrev Ch, Sai Gowtham: > > > > -----Original Message----- > > From: Kumar, Janga Rahul <janga.rahul.kumar@intel.com> > > Sent: Monday, August 7, 2023 9:28 AM > > To: igt-dev@lists.freedesktop.org; Gandi, Ramadevi <ramadevi.gandi@intel.com>; Kumar, Janga Rahul <janga.rahul.kumar@intel.com> > > Cc: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; Joshi, Kunal1 <kunal1.joshi@intel.com>; kamil.konieczny@linux.intel.com; Karas, Anna <anna.karas@intel.com> > > Subject: [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's > > > > From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> > > > > Introduce xe gt library. > > > > Add support to check GT reset and force reset all GT's. > > > > Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Cc: Kunal Joshi <kunal1.joshi@intel.com> > > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > Cc: Anna Karas <anna.karas@intel.com> > > Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> > > Tested-by: Kunal Joshi <kunal1.joshi@intel.com> > > --- > > lib/meson.build | 1 + > > lib/xe/xe_gt.c | 62 +++++++++++++++++++++++++++++++++++++++++++++++++ > > lib/xe/xe_gt.h | 27 +++++++++++++++++++++ > > 3 files changed, 90 insertions(+) > > create mode 100644 lib/xe/xe_gt.c > > create mode 100644 lib/xe/xe_gt.h > > > > diff --git a/lib/meson.build b/lib/meson.build index ce11c0715..b7bfcf4f0 100644 > > --- a/lib/meson.build > > +++ b/lib/meson.build > > @@ -103,6 +103,7 @@ lib_sources = [ > > 'igt_dsc.c', > > 'xe/xe_compute.c', > > 'xe/xe_compute_square_kernels.c', > > + 'xe/xe_gt.c', > > 'xe/xe_ioctl.c', > > 'xe/xe_query.c', > > 'xe/xe_spin.c', > > diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c new file mode 100644 index 000000000..9cad739be > > --- /dev/null > > +++ b/lib/xe/xe_gt.c > > @@ -0,0 +1,62 @@ > > +/* SPDX-License-Identifier: MIT */ > > +/* > > + * Copyright © 2023 Intel Corporation > > + * > > + * Authors: > > + * Janga Rahul Kumar <janga.rahul.kumar@intel.com> > > + */ > > + > > +#include <fcntl.h> > > + > > I don’t think new line is needed here. > > +#include "xe_gt.h" > > + > > +/** > > + * has_xe_gt_reset: > > + * @fd: open xe drm file descriptor > > + * > > + * Check gt force reset sysfs entry is available or not > > + * > > + * Returns: reset sysfs entry available */ bool has_xe_gt_reset(int > > +fd) { > > + char reset_sysfs_path[100]; > > + struct stat st; > > + int gt; > > + int reset_sysfs_fd = -1; > > + int sysfs_fd = -1; > > + > > + igt_assert_eq(fstat(fd, &st), 0); > > + sysfs_fd = igt_sysfs_open(fd); > > + > > + igt_assert(sysfs_fd != -1); > > + xe_for_each_gt(fd, gt) { > > + sprintf(reset_sysfs_path, "/sys/kernel/debug/dri/%d/gt%d/force_reset", > > + minor(st.st_rdev), gt); > > + reset_sysfs_fd = openat(sysfs_fd, reset_sysfs_path, O_RDONLY); > > + > > + if (reset_sysfs_fd == -1) { > > + close(sysfs_fd); > > + return 0; > > + } > > + > > + close(reset_sysfs_fd); > > + } > > + > > + close(sysfs_fd); > > + return 1; > > +} > > We can reset a gt by only opening a file in debugfs? That seems like a > terrible api, we should probably force it to only reset by writing 1 or > something instead.. > Yea this was my lazyness when adding, agree we should fix this in the KMD. Matt > Cheers, > > ~Maarten > ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's 2023-08-11 14:01 ` Matthew Brost @ 2023-08-14 17:30 ` Kumar, Janga Rahul 0 siblings, 0 replies; 18+ messages in thread From: Kumar, Janga Rahul @ 2023-08-14 17:30 UTC (permalink / raw) To: Brost, Matthew, Maarten Lankhorst Cc: igt-dev@lists.freedesktop.org, Ch, Sai Gowtham, Joshi, Kunal1, Gandi, Ramadevi > -----Original Message----- > From: Brost, Matthew <matthew.brost@intel.com> > Sent: 11 August 2023 19:32 > To: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> > Cc: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; Kumar, Janga Rahul > <janga.rahul.kumar@intel.com>; igt-dev@lists.freedesktop.org; Gandi, > Ramadevi <ramadevi.gandi@intel.com>; Joshi, Kunal1 > <kunal1.joshi@intel.com> > Subject: Re: [igt-dev] [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's > > On Fri, Aug 11, 2023 at 03:52:16PM +0200, Maarten Lankhorst wrote: > > Hey, > > > > Den 2023-08-10 kl. 12:17, skrev Ch, Sai Gowtham: > > > > > > -----Original Message----- > > > From: Kumar, Janga Rahul <janga.rahul.kumar@intel.com> > > > Sent: Monday, August 7, 2023 9:28 AM > > > To: igt-dev@lists.freedesktop.org; Gandi, Ramadevi > > > <ramadevi.gandi@intel.com>; Kumar, Janga Rahul > > > <janga.rahul.kumar@intel.com> > > > Cc: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; Joshi, Kunal1 > > > <kunal1.joshi@intel.com>; kamil.konieczny@linux.intel.com; Karas, > > > Anna <anna.karas@intel.com> > > > Subject: [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's > > > > > > From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> > > > > > > Introduce xe gt library. > > > > > > Add support to check GT reset and force reset all GT's. > > > > > > Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > > Cc: Kunal Joshi <kunal1.joshi@intel.com> > > > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > > Cc: Anna Karas <anna.karas@intel.com> > > > Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> > > > Tested-by: Kunal Joshi <kunal1.joshi@intel.com> > > > --- > > > lib/meson.build | 1 + > > > lib/xe/xe_gt.c | 62 > +++++++++++++++++++++++++++++++++++++++++++++++++ > > > lib/xe/xe_gt.h | 27 +++++++++++++++++++++ > > > 3 files changed, 90 insertions(+) > > > create mode 100644 lib/xe/xe_gt.c > > > create mode 100644 lib/xe/xe_gt.h > > > > > > diff --git a/lib/meson.build b/lib/meson.build index > > > ce11c0715..b7bfcf4f0 100644 > > > --- a/lib/meson.build > > > +++ b/lib/meson.build > > > @@ -103,6 +103,7 @@ lib_sources = [ > > > 'igt_dsc.c', > > > 'xe/xe_compute.c', > > > 'xe/xe_compute_square_kernels.c', > > > + 'xe/xe_gt.c', > > > 'xe/xe_ioctl.c', > > > 'xe/xe_query.c', > > > 'xe/xe_spin.c', > > > diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c new file mode 100644 > > > index 000000000..9cad739be > > > --- /dev/null > > > +++ b/lib/xe/xe_gt.c > > > @@ -0,0 +1,62 @@ > > > +/* SPDX-License-Identifier: MIT */ > > > +/* > > > + * Copyright © 2023 Intel Corporation > > > + * > > > + * Authors: > > > + * Janga Rahul Kumar <janga.rahul.kumar@intel.com> > > > + */ > > > + > > > +#include <fcntl.h> > > > + > > > I don’t think new line is needed here. > > > +#include "xe_gt.h" > > > + > > > +/** > > > + * has_xe_gt_reset: > > > + * @fd: open xe drm file descriptor > > > + * > > > + * Check gt force reset sysfs entry is available or not > > > + * > > > + * Returns: reset sysfs entry available */ bool > > > +has_xe_gt_reset(int > > > +fd) { > > > + char reset_sysfs_path[100]; > > > + struct stat st; > > > + int gt; > > > + int reset_sysfs_fd = -1; > > > + int sysfs_fd = -1; > > > + > > > + igt_assert_eq(fstat(fd, &st), 0); > > > + sysfs_fd = igt_sysfs_open(fd); > > > + > > > + igt_assert(sysfs_fd != -1); > > > + xe_for_each_gt(fd, gt) { > > > + sprintf(reset_sysfs_path, > "/sys/kernel/debug/dri/%d/gt%d/force_reset", > > > + minor(st.st_rdev), gt); > > > + reset_sysfs_fd = openat(sysfs_fd, reset_sysfs_path, > O_RDONLY); > > > + > > > + if (reset_sysfs_fd == -1) { > > > + close(sysfs_fd); > > > + return 0; > > > + } > > > + > > > + close(reset_sysfs_fd); > > > + } > > > + > > > + close(sysfs_fd); > > > + return 1; > > > +} > > > > We can reset a gt by only opening a file in debugfs? That seems like a > > terrible api, we should probably force it to only reset by writing 1 > > or something instead.. > > > > Yea this was my lazyness when adding, agree we should fix this in the KMD. Pls update the igt lib as well along with KMD fix. Thanks, Rahul > > Matt > > > Cheers, > > > > ~Maarten > > ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's 2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's janga.rahul.kumar 2023-08-10 10:17 ` Ch, Sai Gowtham @ 2023-08-10 10:30 ` Ch, Sai Gowtham 1 sibling, 0 replies; 18+ messages in thread From: Ch, Sai Gowtham @ 2023-08-10 10:30 UTC (permalink / raw) To: Kumar, Janga Rahul, igt-dev@lists.freedesktop.org, Gandi, Ramadevi Cc: Joshi, Kunal1 Hi Rahul, Please find my comments below. >-----Original Message----- >From: Kumar, Janga Rahul <janga.rahul.kumar@intel.com> >Sent: Monday, August 7, 2023 9:28 AM >To: igt-dev@lists.freedesktop.org; Gandi, Ramadevi ><ramadevi.gandi@intel.com>; Kumar, Janga Rahul ><janga.rahul.kumar@intel.com> >Cc: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; Joshi, Kunal1 ><kunal1.joshi@intel.com>; kamil.konieczny@linux.intel.com; Karas, Anna ><anna.karas@intel.com> >Subject: [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's > >From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> > >Introduce xe gt library. > >Add support to check GT reset and force reset all GT's. > >Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> >Cc: Kunal Joshi <kunal1.joshi@intel.com> >Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> >Cc: Anna Karas <anna.karas@intel.com> >Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> >Tested-by: Kunal Joshi <kunal1.joshi@intel.com> >--- > lib/meson.build | 1 + > lib/xe/xe_gt.c | 62 >+++++++++++++++++++++++++++++++++++++++++++++++++ > lib/xe/xe_gt.h | 27 +++++++++++++++++++++ > 3 files changed, 90 insertions(+) > create mode 100644 lib/xe/xe_gt.c > create mode 100644 lib/xe/xe_gt.h > >diff --git a/lib/meson.build b/lib/meson.build index ce11c0715..b7bfcf4f0 >100644 >--- a/lib/meson.build >+++ b/lib/meson.build >@@ -103,6 +103,7 @@ lib_sources = [ > 'igt_dsc.c', > 'xe/xe_compute.c', > 'xe/xe_compute_square_kernels.c', >+ 'xe/xe_gt.c', > 'xe/xe_ioctl.c', > 'xe/xe_query.c', > 'xe/xe_spin.c', >diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c new file mode 100644 index >000000000..9cad739be >--- /dev/null >+++ b/lib/xe/xe_gt.c >@@ -0,0 +1,62 @@ >+/* SPDX-License-Identifier: MIT */ >+/* >+ * Copyright © 2023 Intel Corporation >+ * >+ * Authors: >+ * Janga Rahul Kumar <janga.rahul.kumar@intel.com> >+ */ >+ >+#include <fcntl.h> >+ New Line can be removed. >+#include "xe_gt.h" >+ >+/** >+ * has_xe_gt_reset: >+ * @fd: open xe drm file descriptor >+ * >+ * Check gt force reset sysfs entry is available or not >+ * >+ * Returns: reset sysfs entry available */ bool has_xe_gt_reset(int >+fd) { >+ char reset_sysfs_path[100]; >+ struct stat st; >+ int gt; >+ int reset_sysfs_fd = -1; >+ int sysfs_fd = -1; >+ >+ igt_assert_eq(fstat(fd, &st), 0); >+ sysfs_fd = igt_sysfs_open(fd); >+ >+ igt_assert(sysfs_fd != -1); >+ xe_for_each_gt(fd, gt) { >+ sprintf(reset_sysfs_path, >"/sys/kernel/debug/dri/%d/gt%d/force_reset", >+ minor(st.st_rdev), gt); >+ reset_sysfs_fd = openat(sysfs_fd, reset_sysfs_path, >O_RDONLY); >+ >+ if (reset_sysfs_fd == -1) { >+ close(sysfs_fd); >+ return 0; >+ } >+ >+ close(reset_sysfs_fd); >+ } >+ >+ close(sysfs_fd); >+ return 1; >+} >+ >+/** >+ * xe_force_gt_reset_all: >+ * >+ * Forces reset of all the GT's. >+ */ >+void xe_force_gt_reset_all(int xe_fd) >+{ >+ int gt; >+ >+ xe_for_each_gt(xe_fd, gt) >+ xe_force_gt_reset(xe_fd, gt); >+} >+ >diff --git a/lib/xe/xe_gt.h b/lib/xe/xe_gt.h new file mode 100644 index >000000000..e075ebf62 >--- /dev/null >+++ b/lib/xe/xe_gt.h >@@ -0,0 +1,27 @@ >+/* SPDX-License-Identifier: MIT */ >+/* >+ * Copyright © 2023 Intel Corporation >+ * >+ * Authors: >+ * Janga Rahul Kumar <janga.rahul.kumar@intel.com> >+ */ >+ >+#include <dirent.h> >+#include <stdint.h> >+#include <sys/stat.h> >+ >+#include "igt_core.h" >+#include "igt_sysfs.h" >+#include "xe_ioctl.h" >+#include "xe_query.h" >+ Headers like xe_query and igt_core can be chopped. Rest looks good to me. Reviewed-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> >+#ifdef __linux__ >+#include <sys/sysmacros.h> >+#else >+#define major(__v__) (((__v__) >> 8) & 0xff) #define minor(__v__) >+((__v__) & 0xff) #endif >+ >+bool has_xe_gt_reset(int fd); >+void xe_force_gt_reset_all(int fd); >+ >-- >2.25.1 ^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t 2/3] lib/xe: Add hang library support 2023-08-07 3:58 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar 2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's janga.rahul.kumar @ 2023-08-07 3:58 ` janga.rahul.kumar 2023-08-10 13:11 ` Ch, Sai Gowtham 2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE janga.rahul.kumar ` (4 subsequent siblings) 6 siblings, 1 reply; 18+ messages in thread From: janga.rahul.kumar @ 2023-08-07 3:58 UTC (permalink / raw) To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: sai.gowtham.ch, kunal1.joshi From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Add helper library support to inject hang batch and clean state post hang. Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Cc: Kunal Joshi <kunal1.joshi@intel.com> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Anna Karas <anna.karas@intel.com> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Tested-by: Kunal Joshi <kunal1.joshi@intel.com> --- lib/xe/xe_gt.c | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++ lib/xe/xe_gt.h | 7 +++++- 2 files changed, 70 insertions(+), 1 deletion(-) diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c index 9cad739be..912b1e074 100644 --- a/lib/xe/xe_gt.c +++ b/lib/xe/xe_gt.c @@ -60,3 +60,67 @@ void xe_force_gt_reset_all(int xe_fd) xe_force_gt_reset(xe_fd, gt); } +/** + * xe_hang_ring: + * @fd: open xe drm file descriptor + * @ring: execbuf ring flag + * + * This helper function injects a hanging batch into @ring. It returns a + * #igt_hang_t structure which must be passed to xe_post_hang_ring() for + * hang post-processing (after the gpu hang interaction has been tested. + * + * Returns: + * Structure with helper internal state for xe_post_hang_ring(). + */ +igt_hang_t xe_hang_ring(int fd, uint64_t ahnd, uint32_t ctx, int ring, + unsigned int flags) +{ + uint16_t class; + uint32_t vm; + unsigned int exec_queue; + igt_spin_t *spin_t; + + vm = xe_vm_create(fd, 0, 0); + + switch (ring) { + case I915_EXEC_DEFAULT: + case I915_EXEC_RENDER: + if (IS_PONTEVECCHIO(intel_get_drm_devid(fd))) + class = DRM_XE_ENGINE_CLASS_COPY; + else + class = DRM_XE_ENGINE_CLASS_RENDER; + break; + case I915_EXEC_BLT: + class = DRM_XE_ENGINE_CLASS_COPY; + break; + case I915_EXEC_BSD: + class = DRM_XE_ENGINE_CLASS_VIDEO_DECODE; + break; + case I915_EXEC_VEBOX: + class = DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE; + break; + default: + igt_assert_f(false, "Unknown engine: %x", (uint32_t) flags); + } + + exec_queue = xe_exec_queue_create_class(fd, vm, class); + + spin_t = igt_spin_new(fd, .ahnd = ahnd, .engine = exec_queue, .vm = vm, + .flags = IGT_SPIN_NO_PREEMPTION); + return (igt_hang_t){ spin_t, exec_queue, 0, flags }; +} + +/** + * xe_post_hang_ring: + * @fd: open xe drm file descriptor + * @arg: hang state from xe_hang_ring() + * + * This function does the necessary post-processing after a gpu hang injected + * with xe_hang_ring(). + */ +void xe_post_hang_ring(int fd, igt_hang_t arg) +{ + xe_exec_queue_destroy(fd, arg.ctx); + xe_vm_destroy(fd, arg.spin->vm); +} + diff --git a/lib/xe/xe_gt.h b/lib/xe/xe_gt.h index e075ebf62..26bbe23d4 100644 --- a/lib/xe/xe_gt.h +++ b/lib/xe/xe_gt.h @@ -12,6 +12,9 @@ #include "igt_core.h" #include "igt_sysfs.h" +#include "lib/igt_gt.h" +#include "lib/intel_chipset.h" +#include "xe_spin.h" #include "xe_ioctl.h" #include "xe_query.h" @@ -24,4 +27,6 @@ bool has_xe_gt_reset(int fd); void xe_force_gt_reset_all(int fd); - +igt_hang_t xe_hang_ring(int fd, uint64_t ahnd, uint32_t ctx, int ring, + unsigned int flags); +void xe_post_hang_ring(int fd, igt_hang_t arg); -- 2.25.1 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/3] lib/xe: Add hang library support 2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 2/3] lib/xe: Add hang library support janga.rahul.kumar @ 2023-08-10 13:11 ` Ch, Sai Gowtham 0 siblings, 0 replies; 18+ messages in thread From: Ch, Sai Gowtham @ 2023-08-10 13:11 UTC (permalink / raw) To: Kumar, Janga Rahul, igt-dev@lists.freedesktop.org, Gandi, Ramadevi Cc: Joshi, Kunal1 >-----Original Message----- >From: Kumar, Janga Rahul <janga.rahul.kumar@intel.com> >Sent: Monday, August 7, 2023 9:28 AM >To: igt-dev@lists.freedesktop.org; Gandi, Ramadevi ><ramadevi.gandi@intel.com>; Kumar, Janga Rahul ><janga.rahul.kumar@intel.com> >Cc: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; Joshi, Kunal1 ><kunal1.joshi@intel.com>; kamil.konieczny@linux.intel.com; Karas, Anna ><anna.karas@intel.com> >Subject: [PATCH i-g-t 2/3] lib/xe: Add hang library support > >From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> > >Add helper library support to inject hang batch and clean state post hang. Looks like it's setting up the test to induce a hang. I feel it's better to change the description. > >Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> >Cc: Kunal Joshi <kunal1.joshi@intel.com> >Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> >Cc: Anna Karas <anna.karas@intel.com> >Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> >Tested-by: Kunal Joshi <kunal1.joshi@intel.com> >--- > lib/xe/xe_gt.c | 64 >++++++++++++++++++++++++++++++++++++++++++++++++++ > lib/xe/xe_gt.h | 7 +++++- > 2 files changed, 70 insertions(+), 1 deletion(-) > >diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c index 9cad739be..912b1e074 100644 >--- a/lib/xe/xe_gt.c >+++ b/lib/xe/xe_gt.c >@@ -60,3 +60,67 @@ void xe_force_gt_reset_all(int xe_fd) > xe_force_gt_reset(xe_fd, gt); > } > >+/** >+ * xe_hang_ring: >+ * @fd: open xe drm file descriptor >+ * @ring: execbuf ring flag >+ * >+ * This helper function injects a hanging batch into @ring. It returns >+a >+ * #igt_hang_t structure which must be passed to xe_post_hang_ring() >+for >+ * hang post-processing (after the gpu hang interaction has been tested. >+ * >+ * Returns: >+ * Structure with helper internal state for xe_post_hang_ring(). >+ */ >+igt_hang_t xe_hang_ring(int fd, uint64_t ahnd, uint32_t ctx, int ring, >+ unsigned int flags) >+{ >+ uint16_t class; >+ uint32_t vm; >+ unsigned int exec_queue; >+ igt_spin_t *spin_t; >+ >+ vm = xe_vm_create(fd, 0, 0); >+ >+ switch (ring) { >+ case I915_EXEC_DEFAULT: >+ case I915_EXEC_RENDER: >+ if (IS_PONTEVECCHIO(intel_get_drm_devid(fd))) It's better to skip the test when render class is executed on PONTEVECCHIO. >+ class = DRM_XE_ENGINE_CLASS_COPY; >+ else >+ class = DRM_XE_ENGINE_CLASS_RENDER; >+ break; >+ case I915_EXEC_BLT: >+ class = DRM_XE_ENGINE_CLASS_COPY; >+ break; >+ case I915_EXEC_BSD: >+ class = DRM_XE_ENGINE_CLASS_VIDEO_DECODE; >+ break; >+ case I915_EXEC_VEBOX: >+ class = DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE; >+ break; >+ default: >+ igt_assert_f(false, "Unknown engine: %x", (uint32_t) flags); >+ } >+ >+ exec_queue = xe_exec_queue_create_class(fd, vm, class); >+ >+ spin_t = igt_spin_new(fd, .ahnd = ahnd, .engine = exec_queue, .vm = >vm, >+ .flags = IGT_SPIN_NO_PREEMPTION); >+ return (igt_hang_t){ spin_t, exec_queue, 0, flags }; } >+ >+/** >+ * xe_post_hang_ring: >+ * @fd: open xe drm file descriptor >+ * @arg: hang state from xe_hang_ring() >+ * >+ * This function does the necessary post-processing after a gpu hang >+injected >+ * with xe_hang_ring(). >+ */ >+void xe_post_hang_ring(int fd, igt_hang_t arg) { >+ xe_exec_queue_destroy(fd, arg.ctx); >+ xe_vm_destroy(fd, arg.spin->vm); >+} >+ >diff --git a/lib/xe/xe_gt.h b/lib/xe/xe_gt.h index e075ebf62..26bbe23d4 >100644 >--- a/lib/xe/xe_gt.h >+++ b/lib/xe/xe_gt.h >@@ -12,6 +12,9 @@ > > #include "igt_core.h" > #include "igt_sysfs.h" >+#include "lib/igt_gt.h" >+#include "lib/intel_chipset.h" >+#include "xe_spin.h" > #include "xe_ioctl.h" > #include "xe_query.h" > >@@ -24,4 +27,6 @@ > > bool has_xe_gt_reset(int fd); > void xe_force_gt_reset_all(int fd); >- >+igt_hang_t xe_hang_ring(int fd, uint64_t ahnd, uint32_t ctx, int ring, >+ unsigned int flags); >+void xe_post_hang_ring(int fd, igt_hang_t arg); >-- >2.25.1 ^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE 2023-08-07 3:58 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar 2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's janga.rahul.kumar 2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 2/3] lib/xe: Add hang library support janga.rahul.kumar @ 2023-08-07 3:58 ` janga.rahul.kumar 2023-08-10 12:58 ` Ch, Sai Gowtham 2023-08-07 6:14 ` [igt-dev] ○ CI.xeBAT: info for Add Xe lib support for hang & GT reset (rev2) Patchwork ` (3 subsequent siblings) 6 siblings, 1 reply; 18+ messages in thread From: janga.rahul.kumar @ 2023-08-07 3:58 UTC (permalink / raw) To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: sai.gowtham.ch, kunal1.joshi From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Extend hang library support to XE driver and update the documentation. Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Cc: Kunal Joshi <kunal1.joshi@intel.com> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Anna Karas <anna.karas@intel.com> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Tested-by: Kunal Joshi <kunal1.joshi@intel.com> --- lib/igt_gt.c | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/lib/igt_gt.c b/lib/igt_gt.c index d4a825e66..245984f7f 100644 --- a/lib/igt_gt.c +++ b/lib/igt_gt.c @@ -44,6 +44,7 @@ #include "intel_reg.h" #include "intel_chipset.h" #include "igt_dummyload.h" +#include "xe/xe_gt.h" /** * SECTION:igt_gt @@ -179,6 +180,12 @@ igt_hang_t igt_allow_hang(int fd, unsigned ctx, unsigned flags) */ if (!igt_check_boolean_env_var("IGT_HANG", true)) igt_skip("hang injection disabled by user [IGT_HANG=0]\n"); + + if (is_xe_device(fd)) { + igt_require(has_gpu_reset(fd)); + return (struct igt_hang){ 0, ctx, 0, flags }; + } + gem_context_require_bannable(fd); if (flags & HANG_WANT_ENGINE_RESET) @@ -215,6 +222,9 @@ igt_hang_t igt_allow_hang(int fd, unsigned ctx, unsigned flags) void igt_disallow_hang(int fd, igt_hang_t arg) { + if (is_xe_device(fd)) + return; + context_set_ban(fd, arg.ctx, arg.ban); if ((arg.flags & HANG_ALLOW_CAPTURE) == 0) { @@ -269,8 +279,8 @@ static bool has_ctx_exec(int fd, unsigned ring, uint32_t ctx) /** * igt_hang_ring_ctx: - * @fd: open i915 drm file descriptor - * @ctx: the contxt specifier + * @fd: open i915/xe drm file descriptor + * @ctx: the context specifier * @ring: execbuf ring flag * @flags: set of flags to control execution * @offset: The resultant gtt offset of the exec obj @@ -290,6 +300,9 @@ static igt_hang_t __igt_hang_ctx(int fd, uint64_t ahnd, uint32_t ctx, int ring, igt_spin_t *spin; unsigned ban; + if (is_xe_device(fd)) + return xe_hang_ring(fd, ahnd, ctx, ring, flags); + igt_require_hang_ring(fd, ctx, ring); /* check if non-default ctx submission is allowed */ @@ -334,7 +347,7 @@ igt_hang_t igt_hang_ctx_with_ahnd(int fd, uint64_t ahnd, uint32_t ctx, int ring, /** * igt_hang_ring: - * @fd: open i915 drm file descriptor + * @fd: open i915/xe drm file descriptor * @ring: execbuf ring flag * * This helper function injects a hanging batch into @ring. It returns a @@ -357,7 +370,7 @@ igt_hang_t igt_hang_ring_with_ahnd(int fd, int ring, uint64_t ahnd) /** * igt_post_hang_ring: - * @fd: open i915 drm file descriptor + * @fd: open i915/xe drm file descriptor * @arg: hang state from igt_hang_ring() * * This function does the necessary post-processing after a gpu hang injected @@ -368,6 +381,11 @@ void igt_post_hang_ring(int fd, igt_hang_t arg) if (!arg.spin) return; + if (is_xe_device(fd)) { + igt_spin_free(fd, arg.spin); + xe_post_hang_ring(fd, arg); + } + gem_sync(fd, arg.spin->handle); /* Wait until it hangs */ igt_spin_free(fd, arg.spin); -- 2.25.1 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE 2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE janga.rahul.kumar @ 2023-08-10 12:58 ` Ch, Sai Gowtham 0 siblings, 0 replies; 18+ messages in thread From: Ch, Sai Gowtham @ 2023-08-10 12:58 UTC (permalink / raw) To: Kumar, Janga Rahul, igt-dev@lists.freedesktop.org, Gandi, Ramadevi Cc: Joshi, Kunal1 >-----Original Message----- >From: Kumar, Janga Rahul <janga.rahul.kumar@intel.com> >Sent: Monday, August 7, 2023 9:28 AM >To: igt-dev@lists.freedesktop.org; Gandi, Ramadevi ><ramadevi.gandi@intel.com>; Kumar, Janga Rahul ><janga.rahul.kumar@intel.com> >Cc: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; Joshi, Kunal1 ><kunal1.joshi@intel.com>; kamil.konieczny@linux.intel.com; Karas, Anna ><anna.karas@intel.com> >Subject: [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE > >From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> > >Extend hang library support to XE driver and update the documentation. > >Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> >Cc: Kunal Joshi <kunal1.joshi@intel.com> >Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> >Cc: Anna Karas <anna.karas@intel.com> >Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> >Tested-by: Kunal Joshi <kunal1.joshi@intel.com> >--- > lib/igt_gt.c | 26 ++++++++++++++++++++++---- > 1 file changed, 22 insertions(+), 4 deletions(-) > You Might have missed extending igt_force_gpu_reset() to your change xe_force_gt_reset_all, Rest looks good to me. Reviewed-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> >diff --git a/lib/igt_gt.c b/lib/igt_gt.c index d4a825e66..245984f7f 100644 >--- a/lib/igt_gt.c >+++ b/lib/igt_gt.c >@@ -44,6 +44,7 @@ > #include "intel_reg.h" > #include "intel_chipset.h" > #include "igt_dummyload.h" >+#include "xe/xe_gt.h" > > /** > * SECTION:igt_gt >@@ -179,6 +180,12 @@ igt_hang_t igt_allow_hang(int fd, unsigned ctx, >unsigned flags) > */ > if (!igt_check_boolean_env_var("IGT_HANG", true)) > igt_skip("hang injection disabled by user [IGT_HANG=0]\n"); >+ >+ if (is_xe_device(fd)) { >+ igt_require(has_gpu_reset(fd)); >+ return (struct igt_hang){ 0, ctx, 0, flags }; >+ } >+ > gem_context_require_bannable(fd); > > if (flags & HANG_WANT_ENGINE_RESET) >@@ -215,6 +222,9 @@ igt_hang_t igt_allow_hang(int fd, unsigned ctx, >unsigned flags) > > void igt_disallow_hang(int fd, igt_hang_t arg) { >+ if (is_xe_device(fd)) >+ return; >+ > context_set_ban(fd, arg.ctx, arg.ban); > > if ((arg.flags & HANG_ALLOW_CAPTURE) == 0) { @@ -269,8 +279,8 @@ >static bool has_ctx_exec(int fd, unsigned ring, uint32_t ctx) > > /** > * igt_hang_ring_ctx: >- * @fd: open i915 drm file descriptor >- * @ctx: the contxt specifier >+ * @fd: open i915/xe drm file descriptor >+ * @ctx: the context specifier > * @ring: execbuf ring flag > * @flags: set of flags to control execution > * @offset: The resultant gtt offset of the exec obj @@ -290,6 +300,9 @@ >static igt_hang_t __igt_hang_ctx(int fd, uint64_t ahnd, uint32_t ctx, int ring, > igt_spin_t *spin; > unsigned ban; > >+ if (is_xe_device(fd)) >+ return xe_hang_ring(fd, ahnd, ctx, ring, flags); >+ > igt_require_hang_ring(fd, ctx, ring); > > /* check if non-default ctx submission is allowed */ @@ -334,7 +347,7 >@@ igt_hang_t igt_hang_ctx_with_ahnd(int fd, uint64_t ahnd, uint32_t ctx, >int ring, > > /** > * igt_hang_ring: >- * @fd: open i915 drm file descriptor >+ * @fd: open i915/xe drm file descriptor > * @ring: execbuf ring flag > * > * This helper function injects a hanging batch into @ring. It returns a @@ - >357,7 +370,7 @@ igt_hang_t igt_hang_ring_with_ahnd(int fd, int ring, >uint64_t ahnd) > > /** > * igt_post_hang_ring: >- * @fd: open i915 drm file descriptor >+ * @fd: open i915/xe drm file descriptor > * @arg: hang state from igt_hang_ring() > * > * This function does the necessary post-processing after a gpu hang injected >@@ -368,6 +381,11 @@ void igt_post_hang_ring(int fd, igt_hang_t arg) > if (!arg.spin) > return; > >+ if (is_xe_device(fd)) { >+ igt_spin_free(fd, arg.spin); >+ xe_post_hang_ring(fd, arg); >+ } >+ > gem_sync(fd, arg.spin->handle); /* Wait until it hangs */ > igt_spin_free(fd, arg.spin); > >-- >2.25.1 ^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for Add Xe lib support for hang & GT reset (rev2) 2023-08-07 3:58 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar ` (2 preceding siblings ...) 2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE janga.rahul.kumar @ 2023-08-07 6:14 ` Patchwork 2023-08-07 6:19 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2023-08-07 6:14 UTC (permalink / raw) To: Kumar, Janga Rahul; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 343 bytes --] == Series Details == Series: Add Xe lib support for hang & GT reset (rev2) URL : https://patchwork.freedesktop.org/series/121292/ State : info == Summary == Participating hosts: bat-pvc-2 bat-atsm-2 bat-dg2-oem2 bat-adlp-7 Missing hosts results[0]: Results: [IGTPW_9524](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9524/index.html) [-- Attachment #2: Type: text/html, Size: 863 bytes --] ^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add Xe lib support for hang & GT reset (rev2) 2023-08-07 3:58 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar ` (3 preceding siblings ...) 2023-08-07 6:14 ` [igt-dev] ○ CI.xeBAT: info for Add Xe lib support for hang & GT reset (rev2) Patchwork @ 2023-08-07 6:19 ` Patchwork 2023-08-07 8:43 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-08-10 11:17 ` [igt-dev] ✗ Fi.CI.BUILD: failure for Add Xe lib support for hang & GT reset (rev3) Patchwork 6 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2023-08-07 6:19 UTC (permalink / raw) To: Kumar, Janga Rahul; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4004 bytes --] == Series Details == Series: Add Xe lib support for hang & GT reset (rev2) URL : https://patchwork.freedesktop.org/series/121292/ State : success == Summary == CI Bug Log - changes from CI_DRM_13483 -> IGTPW_9524 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/index.html Participating hosts (41 -> 40) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9524 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-tgl-1115g4: [PASS][1] -> [FAIL][2] ([i915#7940]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-skl-guc: [PASS][3] -> [FAIL][4] ([i915#7940]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html - bat-mtlp-8: [PASS][5] -> [ABORT][6] ([i915#7077] / [i915#7977] / [i915#8668]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@requests: - bat-mtlp-6: [PASS][7] -> [DMESG-FAIL][8] ([i915#8497]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/bat-mtlp-6/igt@i915_selftest@live@requests.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/bat-mtlp-6/igt@i915_selftest@live@requests.html #### Possible fixes #### * igt@i915_selftest@live@migrate: - bat-dg2-11: [DMESG-WARN][9] ([i915#7699]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/bat-dg2-11/igt@i915_selftest@live@migrate.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/bat-dg2-11/igt@i915_selftest@live@migrate.html #### Warnings #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-kbl-guc: [FAIL][11] ([i915#7940]) -> [SKIP][12] ([fdo#109271]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@kms_psr@cursor_plane_move: - bat-rplp-1: [SKIP][13] ([i915#1072]) -> [ABORT][14] ([i915#8434] / [i915#8668]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/bat-rplp-1/igt@kms_psr@cursor_plane_move.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/bat-rplp-1/igt@kms_psr@cursor_plane_move.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7417 -> IGTPW_9524 CI-20190529: 20190529 CI_DRM_13483: 16ad546e0be15a5432bbb63515abef49d68e5b0c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9524: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/index.html IGT_7417: 7417 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/index.html [-- Attachment #2: Type: text/html, Size: 4937 bytes --] ^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Add Xe lib support for hang & GT reset (rev2) 2023-08-07 3:58 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar ` (4 preceding siblings ...) 2023-08-07 6:19 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-08-07 8:43 ` Patchwork 2023-08-10 11:17 ` [igt-dev] ✗ Fi.CI.BUILD: failure for Add Xe lib support for hang & GT reset (rev3) Patchwork 6 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2023-08-07 8:43 UTC (permalink / raw) To: Kumar, Janga Rahul; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 87557 bytes --] == Series Details == Series: Add Xe lib support for hang & GT reset (rev2) URL : https://patchwork.freedesktop.org/series/121292/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13483_full -> IGTPW_9524_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9524_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9524_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/index.html Participating hosts (11 -> 9) ------------------------------ Missing (2): pig-kbl-iris shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9524_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-apl6/igt@kms_flip@flip-vs-suspend@c-dp1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-apl2/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_plane_multiple@tiling-x@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][3] +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-12/igt@kms_plane_multiple@tiling-x@pipe-d-hdmi-a-3.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_dsc@dsc-with-output-formats-with-bpc}: - shard-mtlp: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html Known issues ------------ Here are the changes found in IGTPW_9524_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414]) +9 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-15/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +19 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@busy@vcs0: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414]) +5 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-2/igt@drm_fdinfo@busy@vcs0.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: NOTRUN -> [FAIL][8] ([i915#7742]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-7/igt@drm_fdinfo@virtual-idle.html * igt@feature_discovery@display-4x: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#1839]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-8/igt@feature_discovery@display-4x.html * igt@feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#658]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-5/igt@feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][11] ([i915#658]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-1/igt@feature_discovery@psr1.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-dg2: [PASS][13] -> [TIMEOUT][14] ([i915#8818]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-5/igt@gem_ctx_exec@basic-nohangcheck.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@gem_ctx_exec@basic-nohangcheck.html - shard-rkl: [PASS][15] -> [FAIL][16] ([i915#6268]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-apl: [PASS][17] -> [ABORT][18] ([i915#180]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-apl7/igt@gem_ctx_isolation@preservation-s3@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu: NOTRUN -> [SKIP][19] ([fdo#109314]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-5/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#1099]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-snb1/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-5/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][24] ([i915#8898]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-snb6/igt@gem_eio@reset-stress.html * igt@gem_exec_await@wide-contexts: - shard-dg2: [PASS][25] -> [FAIL][26] ([i915#5892]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-1/igt@gem_exec_await@wide-contexts.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-2/igt@gem_exec_await@wide-contexts.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-1/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#4771]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-16/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-2/igt@gem_exec_balancer@sliced.html * igt@gem_exec_fair@basic-none-solo: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4473]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][32] ([i915#2842]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-glk1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-17/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@secure-non-master: - shard-rkl: NOTRUN -> [SKIP][35] ([fdo#112283]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +3 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-softpin: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +5 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@gem_exec_reloc@basic-softpin.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +3 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-17/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +2 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-5/igt@gem_exec_reloc@basic-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4812]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][41] ([i915#7975] / [i915#8213]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_swapping@parallel-random: - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#4613]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-glk4/igt@gem_lmem_swapping@parallel-random.html - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-5/igt@gem_lmem_swapping@parallel-random.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#284]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-6/igt@gem_media_vme.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4077]) +4 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-1/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@coherency: - shard-tglu: NOTRUN -> [SKIP][47] ([fdo#111656]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-4/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4077]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-5/igt@gem_mmap_gtt@cpuset-big-copy-odd.html - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4077]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-18/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4083]) +1 similar issue [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-10/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4083]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-6/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_partial_pwrite_pread@write: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3282]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@gem_partial_pwrite_pread@write.html * igt@gem_pwrite@basic-exhaustion: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3282]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-13/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-protected-buffer: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4270]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-3/igt@gem_pxp@create-protected-buffer.html - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4270]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@fail-invalid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4270]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4079]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4079]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-19/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4079]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +5 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-1/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4885]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-5/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4879]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-8/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-5/igt@gem_userptr_blits@coherency-unsync.html - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3297]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-14/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][67] ([i915#3297]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3323]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3297] / [i915#4880]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4880]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3297]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4958]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-5/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#4958]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-14/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@vma-merge: - shard-snb: NOTRUN -> [FAIL][74] ([i915#2724]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-snb5/igt@gem_userptr_blits@vma-merge.html * igt@gem_workarounds@suspend-resume-fd: - shard-dg2: [PASS][75] -> [FAIL][76] ([fdo#103375]) +5 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-2/igt@gem_workarounds@suspend-resume-fd.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-5/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@basic-allocation: - shard-tglu: NOTRUN -> [SKIP][77] ([fdo#109289]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-5/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@bitmasks: - shard-rkl: NOTRUN -> [SKIP][78] ([fdo#109289]) +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#2856]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-chained: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#2856]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#2527]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-7/igt@gen9_exec_parse@secure-batches.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [PASS][82] -> [FAIL][83] ([i915#7069]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-8/igt@i915_hangman@gt-engine-hang@vcs0.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-3/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_module_load@load: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#6227]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-18/igt@i915_module_load@load.html - shard-dg2: NOTRUN -> [SKIP][85] ([i915#6227]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][86] -> [ABORT][87] ([i915#8489] / [i915#8668]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [PASS][88] -> [SKIP][89] ([i915#4281]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-tglu-9/igt@i915_pm_dc@dc9-dpms.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-9/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [PASS][90] -> [SKIP][91] ([fdo#109289] / [i915#8403]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [PASS][92] -> [FAIL][93] ([i915#3591]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#1397]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-glk: NOTRUN -> [SKIP][95] ([fdo#109271]) +64 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-glk8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html - shard-mtlp: NOTRUN -> [SKIP][96] ([fdo#109293]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@gem-execbuf-stress@lmem0: - shard-dg1: [PASS][97] -> [FAIL][98] ([i915#7940]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg1-15/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-15/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html * igt@i915_pm_rpm@i2c: - shard-glk: [PASS][99] -> [FAIL][100] ([i915#5466]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-glk7/igt@i915_pm_rpm@i2c.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-glk4/igt@i915_pm_rpm@i2c.html - shard-dg2: [PASS][101] -> [FAIL][102] ([i915#8717]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-5/igt@i915_pm_rpm@i2c.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-2/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#1397]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-5/igt@i915_pm_rpm@modeset-lpsp-stress.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#1397]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-12/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][105] -> [SKIP][106] ([i915#1397]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][107] -> [SKIP][108] ([i915#1397]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg1-12/igt@i915_pm_rpm@modeset-non-lpsp.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglu: NOTRUN -> [SKIP][109] ([fdo#109506]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-6/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#8925]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_query@query-topology-unsupported: - shard-rkl: NOTRUN -> [SKIP][111] ([fdo#109302]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-7/igt@i915_query@query-topology-unsupported.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#5723]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-16/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][113] ([i915#7443] / [i915#8102]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-7/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#3826]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#8502] / [i915#8709]) +11 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#8502]) +7 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][117] ([i915#8247]) +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-snb1/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html * igt@kms_async_flips@crc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][118] ([i915#8247]) +3 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#404]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][120] ([fdo#111614]) +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][121] ([fdo#111615] / [i915#5286]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5286]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-mtlp: [PASS][123] -> [FAIL][124] ([i915#3743]) +2 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][125] -> [FAIL][126] ([i915#5138]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5286]) +2 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#5190]) +6 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-6/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][129] ([fdo#111615]) +2 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5190]) +2 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6187]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][133] ([fdo#111615]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][134] ([fdo#110723]) +1 similar issue [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#3689] / [i915#5354]) +4 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-16/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +6 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-4/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3886] / [i915#6095]) +1 similar issue [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-8/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#3734] / [i915#5354] / [i915#6095]) +3 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#3886] / [i915#5354] / [i915#6095]) +2 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#5354] / [i915#6095]) +3 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-7/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#5354] / [i915#6095]) +7 similar issues [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-13/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#3689] / [i915#3886] / [i915#5354]) +6 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-17/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-dg1: [PASS][145] -> [DMESG-WARN][146] ([i915#4423]) +1 similar issue [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg1-12/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-17/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][147] ([fdo#109271] / [i915#3886]) +1 similar issue [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-glk5/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-2/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#5354]) +12 similar issues [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][150] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-2/igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#6095]) +13 similar issues [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-6/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-5/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_chamelium_audio@dp-audio: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#7828]) +3 similar issues [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-4/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][154] ([fdo#111827]) +1 similar issue [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-max: - shard-tglu: NOTRUN -> [SKIP][155] ([fdo#111827]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-10/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@degamma: - shard-rkl: NOTRUN -> [SKIP][156] ([fdo#111827]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-1/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#7828]) +2 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#7828]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-9/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#7828]) +3 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#7828]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-14/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_color@deep-color@pipe-b-edp-1-degamma: - shard-mtlp: NOTRUN -> [FAIL][161] ([i915#3546]) +3 similar issues [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@kms_color@deep-color@pipe-b-edp-1-degamma.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3299]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#7118]) +1 similar issue [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@kms_content_protection@legacy.html - shard-dg1: NOTRUN -> [SKIP][164] ([i915#7116]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-15/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][165] ([i915#7173]) +1 similar issue [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html * igt@kms_content_protection@type1: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6944]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-8/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#7118]) +1 similar issue [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3555]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#8814]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555]) +2 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][171] ([fdo#109274] / [i915#5354]) +1 similar issue [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#4103] / [i915#4213]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#4103]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#8588]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3804]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-1/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][177] ([fdo#110189] / [i915#3955]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-1/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#3955]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-dg2: NOTRUN -> [SKIP][179] ([fdo#109274]) +2 similar issues [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-2/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][180] ([fdo#109274] / [i915#3637]) +2 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-8/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][181] ([fdo#111767] / [i915#3637]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3637]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-2/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-snb: NOTRUN -> [SKIP][183] ([fdo#109271] / [fdo#111767]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-snb4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][184] ([fdo#111825]) +2 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-7/igt@kms_flip@2x-plain-flip.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#2587] / [i915#2672]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#2672]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2672]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#2587] / [i915#2672]) +1 similar issue [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672]) +2 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [PASS][190] -> [FAIL][191] ([i915#6880]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8708]) +1 similar issue [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][193] ([fdo#111825]) +7 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#8708]) +6 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3458]) +6 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#5354]) +22 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy: - shard-tglu: NOTRUN -> [SKIP][197] ([fdo#110189]) +8 similar issues [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#3458]) +3 similar issues [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3023]) +10 similar issues [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][200] ([fdo#109280]) +7 similar issues [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#8708]) +3 similar issues [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111825] / [i915#1825]) +15 similar issues [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#1825]) +8 similar issues [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8228]) +2 similar issues [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8228]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#6301]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-6/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][207] ([fdo#109289]) +2 similar issues [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html - shard-dg1: NOTRUN -> [SKIP][208] ([fdo#109289]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-17/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][209] ([fdo#109289]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-1/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_plane_lowres@tiling-yf: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#3555]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-5/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#5176]) +3 similar issues [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#5176]) +3 similar issues [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][213] ([fdo#109271]) +250 similar issues [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-snb2/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#5176]) +23 similar issues [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#5235]) +1 similar issue [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#5235]) +3 similar issues [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#5235]) +7 similar issues [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#5235]) +19 similar issues [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#658]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-3/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][220] ([fdo#111068] / [i915#658]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-9/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr@psr2_primary_page_flip: - shard-mtlp: [PASS][221] -> [FAIL][222] ([i915#8726]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-7/igt@kms_psr@psr2_primary_page_flip.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-4/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_psr@sprite_blt: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#1072]) +2 similar issues [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-10/igt@kms_psr@sprite_blt.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#1072]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-15/igt@kms_psr@sprite_blt.html * igt@kms_psr@sprite_plane_onoff: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#1072]) +2 similar issues [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-4/igt@kms_psr@sprite_plane_onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#5461] / [i915#658]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][227] ([i915#5461] / [i915#658]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_selftest@drm_dp_mst: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#8661]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@kms_selftest@drm_dp_mst.html - shard-glk: NOTRUN -> [SKIP][229] ([fdo#109271] / [i915#8661]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-glk2/igt@kms_selftest@drm_dp_mst.html * igt@kms_selftest@drm_plane: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#8661]) +1 similar issue [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@kms_selftest@drm_plane.html - shard-dg1: NOTRUN -> [SKIP][231] ([i915#8661]) +1 similar issue [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-12/igt@kms_selftest@drm_plane.html * igt@kms_universal_plane@universal-plane-pipe-d-functional: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#4070] / [i915#533] / [i915#6768]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-d-functional.html * igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#4070] / [i915#6768]) +1 similar issue [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [PASS][234] -> [FAIL][235] ([i915#8724]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-5/igt@perf@enable-disable@0-rcs0.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#2435]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-7/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [PASS][237] -> [FAIL][238] ([i915#4349]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-6/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#8850]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-4/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-suspend: - shard-snb: NOTRUN -> [DMESG-WARN][240] ([i915#8841]) +8 similar issues [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-snb2/igt@perf_pmu@rc6-suspend.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][241] ([fdo#109291]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@prime_udl.html - shard-dg1: NOTRUN -> [SKIP][242] ([fdo#109291]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-13/igt@prime_udl.html - shard-mtlp: NOTRUN -> [SKIP][243] ([fdo#109291]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-5/igt@prime_udl.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][244] ([fdo#109295] / [i915#3291] / [i915#3708]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#3291] / [i915#3708]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][246] ([i915#3708]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-12/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#3708]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][248] ([fdo#109295]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-10/igt@prime_vgem@fence-write-hang.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-mtlp: [PASS][249] -> [FAIL][250] ([i915#6015]) +4 similar issues [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [PASS][251] -> [ABORT][252] ([i915#8521]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-2/igt@sysfs_preempt_timeout@timeout@vecs0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@sysfs_preempt_timeout@timeout@vecs0.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: NOTRUN -> [TIMEOUT][253] ([i915#6950]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-3/igt@sysfs_timeslice_duration@timeout@vecs0.html * igt@v3d/v3d_perfmon@create-perfmon-invalid-counters: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#2575]) +4 similar issues [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-3/igt@v3d/v3d_perfmon@create-perfmon-invalid-counters.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][255] ([fdo#109315]) +5 similar issues [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-1/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@multi-and-single-sync: - shard-tglu: NOTRUN -> [SKIP][256] ([fdo#109315] / [i915#2575]) +2 similar issues [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-2/igt@v3d/v3d_submit_cl@multi-and-single-sync.html * igt@v3d/v3d_submit_csd@bad-bo: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#2575]) +2 similar issues [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-2/igt@v3d/v3d_submit_csd@bad-bo.html * igt@v3d/v3d_submit_csd@bad-multisync-extension: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#2575]) +2 similar issues [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-16/igt@v3d/v3d_submit_csd@bad-multisync-extension.html * igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#7711]) +2 similar issues [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-12/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#7711]) +3 similar issues [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-5/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#7711]) +4 similar issues [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-2/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#2575]) +1 similar issue [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-10/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_tiling@set-get: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#7711]) +1 similar issue [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-4/igt@vc4/vc4_tiling@set-get.html #### Possible fixes #### * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [FAIL][264] ([i915#2410]) -> [PASS][265] +3 similar issues [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-6/igt@gem_ctx_persistence@engines-hang@vcs0.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-1/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_ctx_persistence@engines-hang@vcs1: - shard-mtlp: [ABORT][266] ([i915#8865]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-6/igt@gem_ctx_persistence@engines-hang@vcs1.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-1/igt@gem_ctx_persistence@engines-hang@vcs1.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][268] ([i915#5784]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg1-12/igt@gem_eio@unwedge-stress.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_endless@dispatch@rcs0: - shard-dg2: [TIMEOUT][270] ([i915#3778] / [i915#7016] / [i915#7921]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-5/igt@gem_exec_endless@dispatch@rcs0.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-8/igt@gem_exec_endless@dispatch@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][272] ([i915#2842]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][274] ([i915#2842]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_suspend@basic-s3@lmem0: - shard-dg2: [FAIL][276] ([fdo#103375]) -> [PASS][277] +3 similar issues [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-5/igt@gem_exec_suspend@basic-s3@lmem0.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-1/igt@gem_exec_suspend@basic-s3@lmem0.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [FAIL][278] ([i915#6268]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-4/igt@gem_userptr_blits@nohangcheck.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-5/igt@gem_userptr_blits@nohangcheck.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [FAIL][280] ([i915#7069]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-3/igt@i915_hangman@gt-engine-error@vcs0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-3/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][282] ([fdo#109271]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-apl1/igt@i915_pm_dc@dc9-dpms.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-apl6/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_freq_api@freq-basic-api@gt1: - shard-mtlp: [FAIL][284] ([i915#8670]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-4/igt@i915_pm_freq_api@freq-basic-api@gt1.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-5/igt@i915_pm_freq_api@freq-basic-api@gt1.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-dg1: [FAIL][286] ([i915#3591]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][288] ([i915#1397]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-2/igt@i915_pm_rpm@dpms-non-lpsp.html - shard-dg1: [SKIP][290] ([i915#1397]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-15/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress@smem0: - shard-dg1: [FAIL][292] ([i915#7940]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg1-15/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-15/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html * igt@i915_pm_rps@reset: - shard-rkl: [INCOMPLETE][294] -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-rkl-1/igt@i915_pm_rps@reset.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-2/igt@i915_pm_rps@reset.html * igt@i915_selftest@live@dmabuf: - shard-apl: [DMESG-FAIL][296] ([i915#7562]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-apl6/igt@i915_selftest@live@dmabuf.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-apl7/igt@i915_selftest@live@dmabuf.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-mtlp: [FAIL][298] ([i915#3743]) -> [PASS][299] +1 similar issue [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-glk: [FAIL][300] ([i915#72]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][302] ([i915#79]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-apl: [FAIL][304] -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-apl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-apl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-dg2: [FAIL][306] ([i915#6880]) -> [PASS][307] +2 similar issues [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][308] ([i915#433]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html * igt@perf_pmu@busy-idle-check-all@bcs0: - shard-mtlp: [FAIL][310] ([i915#4521]) -> [PASS][311] +1 similar issue [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-4/igt@perf_pmu@busy-idle-check-all@bcs0.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@bcs0.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [FAIL][312] ([i915#4521]) -> [PASS][313] +7 similar issues [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-5/igt@perf_pmu@busy-idle-check-all@vcs0.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-1/igt@perf_pmu@busy-idle-check-all@vcs0.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [FAIL][314] ([i915#4521]) -> [PASS][315] +2 similar issues [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg1-14/igt@perf_pmu@busy-idle-check-all@vecs0.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-18/igt@perf_pmu@busy-idle-check-all@vecs0.html * igt@vgem_basic@mmap: - shard-mtlp: [DMESG-WARN][316] ([i915#2017]) -> [PASS][317] [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-5/igt@vgem_basic@mmap.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-8/igt@vgem_basic@mmap.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][318] ([i915#5493]) -> [DMESG-WARN][319] ([i915#4936] / [i915#5493]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [WARN][320] ([i915#2681]) -> [FAIL][321] ([i915#2681] / [i915#3591]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@i2c: - shard-dg1: [DMESG-WARN][322] ([i915#4391] / [i915#4423]) -> [DMESG-WARN][323] ([i915#4391]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg1-17/igt@i915_pm_rpm@i2c.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-19/igt@i915_pm_rpm@i2c.html * igt@i915_suspend@forcewake: - shard-dg2: [TIMEOUT][324] ([fdo#103375]) -> [FAIL][325] ([fdo#103375]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-5/igt@i915_suspend@forcewake.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-5/igt@i915_suspend@forcewake.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][326] ([fdo#109300]) -> [SKIP][327] ([i915#7116]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg1-13/igt@kms_content_protection@mei_interface.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-16/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][328] ([i915#7118]) -> [SKIP][329] ([i915#7118] / [i915#7162]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-1/igt@kms_content_protection@type1.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [FAIL][330] ([i915#2346]) -> [DMESG-FAIL][331] ([i915#2017] / [i915#5954]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][332] ([i915#4816]) -> [SKIP][333] ([i915#4070] / [i915#4816]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@primary_mmap_gtt: - shard-dg1: [SKIP][334] ([i915#1072] / [i915#4078]) -> [SKIP][335] ([i915#1072]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg1-13/igt@kms_psr@primary_mmap_gtt.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-14/igt@kms_psr@primary_mmap_gtt.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][336] ([i915#1072]) -> [SKIP][337] ([i915#1072] / [i915#4078]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg1-19/igt@kms_psr@sprite_plane_onoff.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg1-16/igt@kms_psr@sprite_plane_onoff.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][338] ([i915#5493]) -> [CRASH][339] ([i915#7331]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13483/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [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#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [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#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [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#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [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#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [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#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [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#5466]: https://gitlab.freedesktop.org/drm/intel/issues/5466 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6950]: https://gitlab.freedesktop.org/drm/intel/issues/6950 [i915#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7562]: https://gitlab.freedesktop.org/drm/intel/issues/7562 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7921]: https://gitlab.freedesktop.org/drm/intel/issues/7921 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8102]: https://gitlab.freedesktop.org/drm/intel/issues/8102 [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#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8670]: https://gitlab.freedesktop.org/drm/intel/issues/8670 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8726]: https://gitlab.freedesktop.org/drm/intel/issues/8726 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8818]: https://gitlab.freedesktop.org/drm/intel/issues/8818 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7417 -> IGTPW_9524 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13483: 16ad546e0be15a5432bbb63515abef49d68e5b0c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9524: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/index.html IGT_7417: 7417 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9524/index.html [-- Attachment #2: Type: text/html, Size: 107315 bytes --] ^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] ✗ Fi.CI.BUILD: failure for Add Xe lib support for hang & GT reset (rev3) 2023-08-07 3:58 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar ` (5 preceding siblings ...) 2023-08-07 8:43 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-08-10 11:17 ` Patchwork 6 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2023-08-10 11:17 UTC (permalink / raw) To: Ch, Sai Gowtham; +Cc: igt-dev == Series Details == Series: Add Xe lib support for hang & GT reset (rev3) URL : https://patchwork.freedesktop.org/series/121292/ State : failure == Summary == Applying: lib/xe: Add support to reset all GT's Patch failed at 0001 lib/xe: Add support to reset all GT's When you have resolved this problem, run "git am --continue". If you prefer to skip this patch, run "git am --skip" instead. To restore the original branch and stop patching, run "git am --abort". ^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset @ 2023-08-10 21:25 janga.rahul.kumar 2023-08-10 21:25 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE janga.rahul.kumar 0 siblings, 1 reply; 18+ messages in thread From: janga.rahul.kumar @ 2023-08-10 21:25 UTC (permalink / raw) To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: sai.gowtham.ch, kunal1.joshi From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Add library support for hang and resetting all the GT's. v2: Create xe library for GT which contains hang and reset helpers.(kamil) Create separate patch for igt gt lib changes.(kamil) Extend hang library to support all rings. Correct Indentation issues. (kamil/Anna) v3: Skip hang config for render engine request on PVC (Gowtham) Extend force reset (Gowtham) Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Cc: Kunal Joshi <kunal1.joshi@intel.com> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Anna Karas <anna.karas@intel.com> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Tested-by: Kunal Joshi <kunal1.joshi@intel.com> Janga Rahul Kumar (3): lib/xe: Add support to reset all GT's lib/xe: Add hang library support lib/igt_gt: Extend hang library support to XE lib/igt_gt.c | 29 +++++++++-- lib/meson.build | 1 + lib/xe/xe_gt.c | 130 ++++++++++++++++++++++++++++++++++++++++++++++++ lib/xe/xe_gt.h | 32 ++++++++++++ 4 files changed, 188 insertions(+), 4 deletions(-) create mode 100644 lib/xe/xe_gt.c create mode 100644 lib/xe/xe_gt.h -- 2.25.1 ^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE 2023-08-10 21:25 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar @ 2023-08-10 21:25 ` janga.rahul.kumar 0 siblings, 0 replies; 18+ messages in thread From: janga.rahul.kumar @ 2023-08-10 21:25 UTC (permalink / raw) To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: sai.gowtham.ch, kunal1.joshi From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Extend hang library support to XE driver and update the documentation. Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Cc: Kunal Joshi <kunal1.joshi@intel.com> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Anna Karas <anna.karas@intel.com> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Tested-by: Kunal Joshi <kunal1.joshi@intel.com> Reviewed-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- lib/igt_gt.c | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/lib/igt_gt.c b/lib/igt_gt.c index d4a825e66..7cf0e468e 100644 --- a/lib/igt_gt.c +++ b/lib/igt_gt.c @@ -44,6 +44,7 @@ #include "intel_reg.h" #include "intel_chipset.h" #include "igt_dummyload.h" +#include "xe/xe_gt.h" /** * SECTION:igt_gt @@ -179,6 +180,12 @@ igt_hang_t igt_allow_hang(int fd, unsigned ctx, unsigned flags) */ if (!igt_check_boolean_env_var("IGT_HANG", true)) igt_skip("hang injection disabled by user [IGT_HANG=0]\n"); + + if (is_xe_device(fd)) { + igt_require(has_gpu_reset(fd)); + return (struct igt_hang){ 0, ctx, 0, flags }; + } + gem_context_require_bannable(fd); if (flags & HANG_WANT_ENGINE_RESET) @@ -215,6 +222,9 @@ igt_hang_t igt_allow_hang(int fd, unsigned ctx, unsigned flags) void igt_disallow_hang(int fd, igt_hang_t arg) { + if (is_xe_device(fd)) + return; + context_set_ban(fd, arg.ctx, arg.ban); if ((arg.flags & HANG_ALLOW_CAPTURE) == 0) { @@ -269,8 +279,8 @@ static bool has_ctx_exec(int fd, unsigned ring, uint32_t ctx) /** * igt_hang_ring_ctx: - * @fd: open i915 drm file descriptor - * @ctx: the contxt specifier + * @fd: open i915/xe drm file descriptor + * @ctx: the context specifier * @ring: execbuf ring flag * @flags: set of flags to control execution * @offset: The resultant gtt offset of the exec obj @@ -290,6 +300,9 @@ static igt_hang_t __igt_hang_ctx(int fd, uint64_t ahnd, uint32_t ctx, int ring, igt_spin_t *spin; unsigned ban; + if (is_xe_device(fd)) + return xe_hang_ring(fd, ahnd, ctx, ring, flags); + igt_require_hang_ring(fd, ctx, ring); /* check if non-default ctx submission is allowed */ @@ -334,7 +347,7 @@ igt_hang_t igt_hang_ctx_with_ahnd(int fd, uint64_t ahnd, uint32_t ctx, int ring, /** * igt_hang_ring: - * @fd: open i915 drm file descriptor + * @fd: open i915/xe drm file descriptor * @ring: execbuf ring flag * * This helper function injects a hanging batch into @ring. It returns a @@ -357,7 +370,7 @@ igt_hang_t igt_hang_ring_with_ahnd(int fd, int ring, uint64_t ahnd) /** * igt_post_hang_ring: - * @fd: open i915 drm file descriptor + * @fd: open i915/xe drm file descriptor * @arg: hang state from igt_hang_ring() * * This function does the necessary post-processing after a gpu hang injected @@ -368,6 +381,11 @@ void igt_post_hang_ring(int fd, igt_hang_t arg) if (!arg.spin) return; + if (is_xe_device(fd)) { + igt_spin_free(fd, arg.spin); + xe_post_hang_ring(fd, arg); + } + gem_sync(fd, arg.spin->handle); /* Wait until it hangs */ igt_spin_free(fd, arg.spin); @@ -399,6 +417,9 @@ void igt_force_gpu_reset(int drm_fd) igt_debug("Triggering GPU reset\n"); + if (is_xe_device(drm_fd)) + xe_force_gt_reset_all(drm_fd); + dir = igt_debugfs_dir(drm_fd); wedged = 0; -- 2.25.1 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset @ 2023-08-14 17:29 janga.rahul.kumar 2023-08-14 17:29 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE janga.rahul.kumar 0 siblings, 1 reply; 18+ messages in thread From: janga.rahul.kumar @ 2023-08-14 17:29 UTC (permalink / raw) To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: sai.gowtham.ch, kunal1.joshi From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Add library support for hang and resetting all the GT's. v2: Create xe library for GT which contains hang and reset helpers.(kamil) Create separate patch for igt gt lib changes.(kamil) Extend hang library to support all rings. Correct Indentation issues. (kamil/Anna) v3: Skip hang config for render engine request on PVC (Gowtham) Extend force reset (Gowtham) v4: Address review comments. (Kamil/Gowtham) Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Cc: Kunal Joshi <kunal1.joshi@intel.com> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Anna Karas <anna.karas@intel.com> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Tested-by: Kunal Joshi <kunal1.joshi@intel.com> Reviewed-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Janga Rahul Kumar (3): lib/xe: Add support to reset all GT's lib/xe: Add hang library support lib/igt_gt: Extend hang library support to XE lib/igt_gt.c | 29 +++++++++-- lib/meson.build | 1 + lib/xe/xe_gt.c | 136 ++++++++++++++++++++++++++++++++++++++++++++++++ lib/xe/xe_gt.h | 22 ++++++++ 4 files changed, 184 insertions(+), 4 deletions(-) create mode 100644 lib/xe/xe_gt.c create mode 100644 lib/xe/xe_gt.h -- 2.25.1 ^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE 2023-08-14 17:29 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar @ 2023-08-14 17:29 ` janga.rahul.kumar 0 siblings, 0 replies; 18+ messages in thread From: janga.rahul.kumar @ 2023-08-14 17:29 UTC (permalink / raw) To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: sai.gowtham.ch, kunal1.joshi From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Extend hang library support to XE driver and update the documentation. Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Cc: Kunal Joshi <kunal1.joshi@intel.com> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Anna Karas <anna.karas@intel.com> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Tested-by: Kunal Joshi <kunal1.joshi@intel.com> Reviewed-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- lib/igt_gt.c | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/lib/igt_gt.c b/lib/igt_gt.c index d4a825e66..7cf0e468e 100644 --- a/lib/igt_gt.c +++ b/lib/igt_gt.c @@ -44,6 +44,7 @@ #include "intel_reg.h" #include "intel_chipset.h" #include "igt_dummyload.h" +#include "xe/xe_gt.h" /** * SECTION:igt_gt @@ -179,6 +180,12 @@ igt_hang_t igt_allow_hang(int fd, unsigned ctx, unsigned flags) */ if (!igt_check_boolean_env_var("IGT_HANG", true)) igt_skip("hang injection disabled by user [IGT_HANG=0]\n"); + + if (is_xe_device(fd)) { + igt_require(has_gpu_reset(fd)); + return (struct igt_hang){ 0, ctx, 0, flags }; + } + gem_context_require_bannable(fd); if (flags & HANG_WANT_ENGINE_RESET) @@ -215,6 +222,9 @@ igt_hang_t igt_allow_hang(int fd, unsigned ctx, unsigned flags) void igt_disallow_hang(int fd, igt_hang_t arg) { + if (is_xe_device(fd)) + return; + context_set_ban(fd, arg.ctx, arg.ban); if ((arg.flags & HANG_ALLOW_CAPTURE) == 0) { @@ -269,8 +279,8 @@ static bool has_ctx_exec(int fd, unsigned ring, uint32_t ctx) /** * igt_hang_ring_ctx: - * @fd: open i915 drm file descriptor - * @ctx: the contxt specifier + * @fd: open i915/xe drm file descriptor + * @ctx: the context specifier * @ring: execbuf ring flag * @flags: set of flags to control execution * @offset: The resultant gtt offset of the exec obj @@ -290,6 +300,9 @@ static igt_hang_t __igt_hang_ctx(int fd, uint64_t ahnd, uint32_t ctx, int ring, igt_spin_t *spin; unsigned ban; + if (is_xe_device(fd)) + return xe_hang_ring(fd, ahnd, ctx, ring, flags); + igt_require_hang_ring(fd, ctx, ring); /* check if non-default ctx submission is allowed */ @@ -334,7 +347,7 @@ igt_hang_t igt_hang_ctx_with_ahnd(int fd, uint64_t ahnd, uint32_t ctx, int ring, /** * igt_hang_ring: - * @fd: open i915 drm file descriptor + * @fd: open i915/xe drm file descriptor * @ring: execbuf ring flag * * This helper function injects a hanging batch into @ring. It returns a @@ -357,7 +370,7 @@ igt_hang_t igt_hang_ring_with_ahnd(int fd, int ring, uint64_t ahnd) /** * igt_post_hang_ring: - * @fd: open i915 drm file descriptor + * @fd: open i915/xe drm file descriptor * @arg: hang state from igt_hang_ring() * * This function does the necessary post-processing after a gpu hang injected @@ -368,6 +381,11 @@ void igt_post_hang_ring(int fd, igt_hang_t arg) if (!arg.spin) return; + if (is_xe_device(fd)) { + igt_spin_free(fd, arg.spin); + xe_post_hang_ring(fd, arg); + } + gem_sync(fd, arg.spin->handle); /* Wait until it hangs */ igt_spin_free(fd, arg.spin); @@ -399,6 +417,9 @@ void igt_force_gpu_reset(int drm_fd) igt_debug("Triggering GPU reset\n"); + if (is_xe_device(drm_fd)) + xe_force_gt_reset_all(drm_fd); + dir = igt_debugfs_dir(drm_fd); wedged = 0; -- 2.25.1 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset @ 2023-08-16 10:24 janga.rahul.kumar 2023-08-16 10:24 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE janga.rahul.kumar 0 siblings, 1 reply; 18+ messages in thread From: janga.rahul.kumar @ 2023-08-16 10:24 UTC (permalink / raw) To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: sai.gowtham.ch, kunal1.joshi From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Add library support for hang and resetting all the GT's. v2: Create xe library for GT which contains hang and reset helpers.(kamil) Create separate patch for igt gt lib changes.(kamil) Extend hang library to support all rings. Correct Indentation issues. (kamil/Anna) v3: Skip hang config for render engine request on PVC (Gowtham) Extend force reset (Gowtham) v4: Address review comments. (Kamil/Gowtham) v5: library header includes cleanUp. (kamil) Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Cc: Kunal Joshi <kunal1.joshi@intel.com> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Anna Karas <anna.karas@intel.com> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Tested-by: Kunal Joshi <kunal1.joshi@intel.com> Reviewed-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Janga Rahul Kumar (3): lib/xe: Add support to reset all GT's lib/xe: Add hang library support lib/igt_gt: Extend hang library support to XE lib/igt_gt.c | 29 ++++++++-- lib/meson.build | 1 + lib/xe/xe_gt.c | 143 ++++++++++++++++++++++++++++++++++++++++++++++++ lib/xe/xe_gt.h | 15 +++++ 4 files changed, 184 insertions(+), 4 deletions(-) create mode 100644 lib/xe/xe_gt.c create mode 100644 lib/xe/xe_gt.h -- 2.25.1 ^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE 2023-08-16 10:24 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar @ 2023-08-16 10:24 ` janga.rahul.kumar 0 siblings, 0 replies; 18+ messages in thread From: janga.rahul.kumar @ 2023-08-16 10:24 UTC (permalink / raw) To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: sai.gowtham.ch, kunal1.joshi From: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Extend hang library support to XE driver and update the documentation. Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Cc: Kunal Joshi <kunal1.joshi@intel.com> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Anna Karas <anna.karas@intel.com> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Tested-by: Kunal Joshi <kunal1.joshi@intel.com> Reviewed-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- lib/igt_gt.c | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/lib/igt_gt.c b/lib/igt_gt.c index d4a825e66..7cf0e468e 100644 --- a/lib/igt_gt.c +++ b/lib/igt_gt.c @@ -44,6 +44,7 @@ #include "intel_reg.h" #include "intel_chipset.h" #include "igt_dummyload.h" +#include "xe/xe_gt.h" /** * SECTION:igt_gt @@ -179,6 +180,12 @@ igt_hang_t igt_allow_hang(int fd, unsigned ctx, unsigned flags) */ if (!igt_check_boolean_env_var("IGT_HANG", true)) igt_skip("hang injection disabled by user [IGT_HANG=0]\n"); + + if (is_xe_device(fd)) { + igt_require(has_gpu_reset(fd)); + return (struct igt_hang){ 0, ctx, 0, flags }; + } + gem_context_require_bannable(fd); if (flags & HANG_WANT_ENGINE_RESET) @@ -215,6 +222,9 @@ igt_hang_t igt_allow_hang(int fd, unsigned ctx, unsigned flags) void igt_disallow_hang(int fd, igt_hang_t arg) { + if (is_xe_device(fd)) + return; + context_set_ban(fd, arg.ctx, arg.ban); if ((arg.flags & HANG_ALLOW_CAPTURE) == 0) { @@ -269,8 +279,8 @@ static bool has_ctx_exec(int fd, unsigned ring, uint32_t ctx) /** * igt_hang_ring_ctx: - * @fd: open i915 drm file descriptor - * @ctx: the contxt specifier + * @fd: open i915/xe drm file descriptor + * @ctx: the context specifier * @ring: execbuf ring flag * @flags: set of flags to control execution * @offset: The resultant gtt offset of the exec obj @@ -290,6 +300,9 @@ static igt_hang_t __igt_hang_ctx(int fd, uint64_t ahnd, uint32_t ctx, int ring, igt_spin_t *spin; unsigned ban; + if (is_xe_device(fd)) + return xe_hang_ring(fd, ahnd, ctx, ring, flags); + igt_require_hang_ring(fd, ctx, ring); /* check if non-default ctx submission is allowed */ @@ -334,7 +347,7 @@ igt_hang_t igt_hang_ctx_with_ahnd(int fd, uint64_t ahnd, uint32_t ctx, int ring, /** * igt_hang_ring: - * @fd: open i915 drm file descriptor + * @fd: open i915/xe drm file descriptor * @ring: execbuf ring flag * * This helper function injects a hanging batch into @ring. It returns a @@ -357,7 +370,7 @@ igt_hang_t igt_hang_ring_with_ahnd(int fd, int ring, uint64_t ahnd) /** * igt_post_hang_ring: - * @fd: open i915 drm file descriptor + * @fd: open i915/xe drm file descriptor * @arg: hang state from igt_hang_ring() * * This function does the necessary post-processing after a gpu hang injected @@ -368,6 +381,11 @@ void igt_post_hang_ring(int fd, igt_hang_t arg) if (!arg.spin) return; + if (is_xe_device(fd)) { + igt_spin_free(fd, arg.spin); + xe_post_hang_ring(fd, arg); + } + gem_sync(fd, arg.spin->handle); /* Wait until it hangs */ igt_spin_free(fd, arg.spin); @@ -399,6 +417,9 @@ void igt_force_gpu_reset(int drm_fd) igt_debug("Triggering GPU reset\n"); + if (is_xe_device(drm_fd)) + xe_force_gt_reset_all(drm_fd); + dir = igt_debugfs_dir(drm_fd); wedged = 0; -- 2.25.1 ^ permalink raw reply related [flat|nested] 18+ messages in thread
end of thread, other threads:[~2023-08-16 10:22 UTC | newest] Thread overview: 18+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-07 3:58 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar 2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 1/3] lib/xe: Add support to reset all GT's janga.rahul.kumar 2023-08-10 10:17 ` Ch, Sai Gowtham 2023-08-11 13:52 ` Maarten Lankhorst 2023-08-11 14:01 ` Matthew Brost 2023-08-14 17:30 ` Kumar, Janga Rahul 2023-08-10 10:30 ` Ch, Sai Gowtham 2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 2/3] lib/xe: Add hang library support janga.rahul.kumar 2023-08-10 13:11 ` Ch, Sai Gowtham 2023-08-07 3:58 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE janga.rahul.kumar 2023-08-10 12:58 ` Ch, Sai Gowtham 2023-08-07 6:14 ` [igt-dev] ○ CI.xeBAT: info for Add Xe lib support for hang & GT reset (rev2) Patchwork 2023-08-07 6:19 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-07 8:43 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-08-10 11:17 ` [igt-dev] ✗ Fi.CI.BUILD: failure for Add Xe lib support for hang & GT reset (rev3) Patchwork -- strict thread matches above, loose matches on Subject: below -- 2023-08-10 21:25 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar 2023-08-10 21:25 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE janga.rahul.kumar 2023-08-14 17:29 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar 2023-08-14 17:29 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE janga.rahul.kumar 2023-08-16 10:24 [igt-dev] [PATCH i-g-t 0/3] Add Xe lib support for hang & GT reset janga.rahul.kumar 2023-08-16 10:24 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_gt: Extend hang library support to XE janga.rahul.kumar
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox