* [igt-dev] [PATCH i-g-t v2 0/4] Modify igt_pm functions and add GT C6 freeze test
@ 2023-08-04 10:31 Riana Tauro
2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 1/4] lib/igt_device: Add a function to get the pci slot name Riana Tauro
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Riana Tauro @ 2023-08-04 10:31 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
1) Modify igt_pm d3cold_allowed get/set tests
2) Change i915 suspend and xe pm tests to use the igt_pm
d3cold_allowed functions
3) Add a test to validate residency across s2idle
Rev2: Add justification for change in commit message
Skip disabling d3cold_allowed for igfx
Riana Tauro (4):
lib/igt_device: Add a function to get the pci slot name
lib/igt_pm: change d3cold_allowed function parameters
tests/xe: use igt_pm library functions
tests/xe: Add a test that validates residency during s2idle
lib/igt_device.c | 20 ++++++++++++++
lib/igt_device.h | 1 +
lib/igt_pm.c | 22 +++++++--------
lib/igt_pm.h | 4 +--
tests/i915/i915_suspend.c | 8 +++---
tests/xe/xe_pm.c | 43 +++++------------------------
tests/xe/xe_pm_residency.c | 56 ++++++++++++++++++++++++++++++++++----
7 files changed, 96 insertions(+), 58 deletions(-)
--
2.40.0
^ permalink raw reply [flat|nested] 13+ messages in thread* [igt-dev] [PATCH i-g-t v2 1/4] lib/igt_device: Add a function to get the pci slot name 2023-08-04 10:31 [igt-dev] [PATCH i-g-t v2 0/4] Modify igt_pm functions and add GT C6 freeze test Riana Tauro @ 2023-08-04 10:31 ` Riana Tauro 2023-08-08 7:54 ` Gupta, Anshuman 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 2/4] lib/igt_pm: change d3cold_allowed function parameters Riana Tauro ` (5 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Riana Tauro @ 2023-08-04 10:31 UTC (permalink / raw) To: igt-dev; +Cc: badal.nilawar The existing d3cold_allowed get/set functions in igt_pm uses igt_device_card as a function argument. Xe tests cannot use this function as they use pci_device. To have a common library function for both i915 and xe, use a common parameter between both igt_device_card and pci_device ie.pci_slot_name. Add a helper function to get this pci slot name. v2: Add justification for change in commit message (Anshuman) Signed-off-by: Riana Tauro <riana.tauro@intel.com> --- lib/igt_device.c | 20 ++++++++++++++++++++ lib/igt_device.h | 1 + 2 files changed, 21 insertions(+) diff --git a/lib/igt_device.c b/lib/igt_device.c index 49b771221..ffb3f56ce 100644 --- a/lib/igt_device.c +++ b/lib/igt_device.c @@ -23,6 +23,7 @@ */ #include <sys/types.h> #include <fcntl.h> +#include <limits.h> #include <sys/stat.h> #ifdef __linux__ @@ -287,3 +288,22 @@ igt_device_get_pci_root_port(int fd) return prev; } + +/** + * igt_device_get_pci_slot_name: + * @fd: the device. + * @pci_slot_name: pci slot name + * + * Looks up the graphics pci device using libpciaccess + * and gets the slot name + */ +void igt_device_get_pci_slot_name(int fd, char *pci_slot_name) +{ + struct pci_device *pci_dev; + + pci_dev = __igt_device_get_pci_device(fd, 0); + igt_require(pci_dev); + + snprintf(pci_slot_name, NAME_MAX, "%04x:%02x:%02x.%01x", + pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev->func); +} diff --git a/lib/igt_device.h b/lib/igt_device.h index 800a0fcc3..dad7bb047 100644 --- a/lib/igt_device.h +++ b/lib/igt_device.h @@ -36,4 +36,5 @@ struct pci_device *igt_device_get_pci_device(int fd); struct pci_device *__igt_device_get_pci_device(int fd, unsigned int vf_id); struct pci_device *igt_device_get_pci_root_port(int fd); +void igt_device_get_pci_slot_name(int fd, char *pci_slot_name); #endif /* __IGT_DEVICE_H__ */ -- 2.40.0 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 1/4] lib/igt_device: Add a function to get the pci slot name 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 1/4] lib/igt_device: Add a function to get the pci slot name Riana Tauro @ 2023-08-08 7:54 ` Gupta, Anshuman 0 siblings, 0 replies; 13+ messages in thread From: Gupta, Anshuman @ 2023-08-08 7:54 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org; +Cc: Nilawar, Badal > -----Original Message----- > From: Tauro, Riana <riana.tauro@intel.com> > Sent: Friday, August 4, 2023 4:01 PM > To: igt-dev@lists.freedesktop.org > Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman > <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>; > Belgaumkar, Vinay <vinay.belgaumkar@intel.com>; Nilawar, Badal > <badal.nilawar@intel.com>; Sundaresan, Sujaritha > <sujaritha.sundaresan@intel.com> > Subject: [PATCH i-g-t v2 1/4] lib/igt_device: Add a function to get the pci slot > name > > The existing d3cold_allowed get/set functions in igt_pm uses igt_device_card as > a function argument. Xe tests cannot use this function as they use pci_device. > To have a common library function for both i915 and xe, use a common > parameter between both igt_device_card and pci_device ie.pci_slot_name. > > Add a helper function to get this pci slot name. > > v2: Add justification for change in commit message (Anshuman) > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> > --- > lib/igt_device.c | 20 ++++++++++++++++++++ lib/igt_device.h | 1 + > 2 files changed, 21 insertions(+) > > diff --git a/lib/igt_device.c b/lib/igt_device.c index 49b771221..ffb3f56ce > 100644 > --- a/lib/igt_device.c > +++ b/lib/igt_device.c > @@ -23,6 +23,7 @@ > */ > #include <sys/types.h> > #include <fcntl.h> > +#include <limits.h> > > #include <sys/stat.h> > #ifdef __linux__ > @@ -287,3 +288,22 @@ igt_device_get_pci_root_port(int fd) > > return prev; > } > + > +/** > + * igt_device_get_pci_slot_name: > + * @fd: the device. > + * @pci_slot_name: pci slot name > + * > + * Looks up the graphics pci device using libpciaccess > + * and gets the slot name > + */ > +void igt_device_get_pci_slot_name(int fd, char *pci_slot_name) { > + struct pci_device *pci_dev; > + > + pci_dev = __igt_device_get_pci_device(fd, 0); > + igt_require(pci_dev); > + > + snprintf(pci_slot_name, NAME_MAX, "%04x:%02x:%02x.%01x", > + pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev->func); Missing the pci_slot_name NULL check here ? With that, Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> > } > diff --git a/lib/igt_device.h b/lib/igt_device.h index 800a0fcc3..dad7bb047 > 100644 > --- a/lib/igt_device.h > +++ b/lib/igt_device.h > @@ -36,4 +36,5 @@ struct pci_device *igt_device_get_pci_device(int fd); > struct pci_device *__igt_device_get_pci_device(int fd, unsigned int vf_id); struct > pci_device *igt_device_get_pci_root_port(int fd); > > +void igt_device_get_pci_slot_name(int fd, char *pci_slot_name); > #endif /* __IGT_DEVICE_H__ */ > -- > 2.40.0 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/4] lib/igt_pm: change d3cold_allowed function parameters 2023-08-04 10:31 [igt-dev] [PATCH i-g-t v2 0/4] Modify igt_pm functions and add GT C6 freeze test Riana Tauro 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 1/4] lib/igt_device: Add a function to get the pci slot name Riana Tauro @ 2023-08-04 10:31 ` Riana Tauro 2023-08-08 8:02 ` Gupta, Anshuman 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 3/4] tests/xe: use igt_pm library functions Riana Tauro ` (4 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Riana Tauro @ 2023-08-04 10:31 UTC (permalink / raw) To: igt-dev; +Cc: badal.nilawar The existing d3cold_allowed get/set function in igt_pm uses igt_device_card as a function argument. Xe tests cannot use this function as they need to pass pci_device as parameter. To have a common library function for both i915 and xe, use a common parameter between igt_device_card and pci_device ie.pci_slot_name. Change function parameter of d3cold_allowed get/set functions to pci slot name. Change the data type of value from char to uint32_t as it is more appropriate. Modify i915_suspend to use these functions. No Functional Changes. v2: Add justification for change in commit message (Anshuman) Signed-off-by: Riana Tauro <riana.tauro@intel.com> --- lib/igt_pm.c | 22 +++++++++++----------- lib/igt_pm.h | 4 ++-- tests/i915/i915_suspend.c | 8 ++++---- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/lib/igt_pm.c b/lib/igt_pm.c index ba591f0f8..11cf82950 100644 --- a/lib/igt_pm.c +++ b/lib/igt_pm.c @@ -1204,47 +1204,47 @@ void igt_pm_setup_pci_card_runtime_pm(struct pci_device *pci_dev) /** * igt_pm_get_d3cold_allowed: - * @igt_device_card: device card - * @val: value to be read into + * @pci_slot_name: slot name of the pci device + * @value: value to be read into * * Reads the value of d3cold_allowed attribute * of the pci device */ -void igt_pm_get_d3cold_allowed(struct igt_device_card *card, char *val) +void igt_pm_get_d3cold_allowed(const char *pci_slot_name, uint32_t *value) { char name[PATH_MAX]; int fd; snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%s", - card->pci_slot_name); + pci_slot_name); fd = open(name, O_RDONLY); igt_assert_f(fd >= 0, "Can't open %s\n", name); - igt_sysfs_read(fd, "d3cold_allowed", val, sizeof(val)); + __igt_sysfs_get_u32(fd, "d3cold_allowed", value); close(fd); } /** - * igt_pm_get_d3cold_allowed: - * @igt_device_card: device card - * @val: value to be written + * igt_pm_set_d3cold_allowed: + * @pci_slot_name: slot name of pci device + * @value: value to be written * * writes the value to d3cold_allowed attribute of pci device */ -void igt_pm_set_d3cold_allowed(struct igt_device_card *card, const char *val) +void igt_pm_set_d3cold_allowed(const char *pci_slot_name, uint32_t value) { char name[PATH_MAX]; int fd; snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%s", - card->pci_slot_name); + pci_slot_name); fd = open(name, O_RDONLY); igt_assert_f(fd >= 0, "Can't open %s\n", name); - igt_sysfs_write(fd, "d3cold_allowed", val, sizeof(val)); + __igt_sysfs_set_u32(fd, "d3cold_allowed", value); close(fd); } diff --git a/lib/igt_pm.h b/lib/igt_pm.h index 71ec2f239..306a9eb46 100644 --- a/lib/igt_pm.h +++ b/lib/igt_pm.h @@ -79,8 +79,8 @@ enum igt_acpi_d_state igt_pm_get_acpi_real_d_state(struct pci_device *pci_dev); void igt_pm_enable_pci_card_runtime_pm(struct pci_device *root, struct pci_device *i915); -void igt_pm_get_d3cold_allowed(struct igt_device_card *card, char *val); -void igt_pm_set_d3cold_allowed(struct igt_device_card *card, const char *val); +void igt_pm_get_d3cold_allowed(const char *pci_slot_name, uint32_t *value); +void igt_pm_set_d3cold_allowed(const char *pci_slot_name, uint32_t value); void igt_pm_setup_pci_card_runtime_pm(struct pci_device *pci_dev); void igt_pm_restore_pci_card_runtime_pm(void); void igt_pm_print_pci_card_runtime_status(void); diff --git a/tests/i915/i915_suspend.c b/tests/i915/i915_suspend.c index 851e797c2..c25805584 100644 --- a/tests/i915/i915_suspend.c +++ b/tests/i915/i915_suspend.c @@ -283,7 +283,7 @@ static void test_suspend_without_i915(int state) { struct igt_device_card card; - char d3cold_allowed[2]; + uint32_t d3cold_allowed; int fd; fd = __drm_open_driver(DRIVER_INTEL); @@ -297,8 +297,8 @@ test_suspend_without_i915(int state) */ if (state == SUSPEND_STATE_FREEZE && igt_device_find_first_i915_discrete_card(&card)) { - igt_pm_get_d3cold_allowed(&card, d3cold_allowed); - igt_pm_set_d3cold_allowed(&card, "0\n"); + igt_pm_get_d3cold_allowed(card.pci_slot_name, &d3cold_allowed); + igt_pm_set_d3cold_allowed(card.pci_slot_name, 0); } drm_close_driver(fd); @@ -308,7 +308,7 @@ test_suspend_without_i915(int state) igt_system_suspend_autoresume(state, SUSPEND_TEST_NONE); if (state == SUSPEND_STATE_FREEZE && strlen(card.card)) - igt_pm_set_d3cold_allowed(&card, d3cold_allowed); + igt_pm_set_d3cold_allowed(card.pci_slot_name, d3cold_allowed); igt_kmsg(KMSG_INFO "Re-loading i915 \n"); igt_assert_eq(igt_i915_driver_load(NULL), 0); -- 2.40.0 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 2/4] lib/igt_pm: change d3cold_allowed function parameters 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 2/4] lib/igt_pm: change d3cold_allowed function parameters Riana Tauro @ 2023-08-08 8:02 ` Gupta, Anshuman 0 siblings, 0 replies; 13+ messages in thread From: Gupta, Anshuman @ 2023-08-08 8:02 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org; +Cc: Nilawar, Badal > -----Original Message----- > From: Tauro, Riana <riana.tauro@intel.com> > Sent: Friday, August 4, 2023 4:01 PM > To: igt-dev@lists.freedesktop.org > Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman > <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>; > Belgaumkar, Vinay <vinay.belgaumkar@intel.com>; Nilawar, Badal > <badal.nilawar@intel.com>; Sundaresan, Sujaritha > <sujaritha.sundaresan@intel.com> > Subject: [PATCH i-g-t v2 2/4] lib/igt_pm: change d3cold_allowed function > parameters > > The existing d3cold_allowed get/set function in igt_pm uses igt_device_card as > a function argument. > Xe tests cannot use this function as they need to pass pci_device as parameter. > To have a common library function for both i915 and xe, use a common > parameter between igt_device_card and pci_device ie.pci_slot_name. > > Change function parameter of d3cold_allowed get/set functions to pci slot > name. > Change the data type of value from char to uint32_t as it is more appropriate. > > Modify i915_suspend to use these functions. > No Functional Changes. > > v2: Add justification for change in commit message (Anshuman) > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> > --- > lib/igt_pm.c | 22 +++++++++++----------- > lib/igt_pm.h | 4 ++-- > tests/i915/i915_suspend.c | 8 ++++---- > 3 files changed, 17 insertions(+), 17 deletions(-) > > diff --git a/lib/igt_pm.c b/lib/igt_pm.c index ba591f0f8..11cf82950 100644 > --- a/lib/igt_pm.c > +++ b/lib/igt_pm.c > @@ -1204,47 +1204,47 @@ void igt_pm_setup_pci_card_runtime_pm(struct > pci_device *pci_dev) > > /** > * igt_pm_get_d3cold_allowed: > - * @igt_device_card: device card > - * @val: value to be read into > + * @pci_slot_name: slot name of the pci device > + * @value: value to be read into > * > * Reads the value of d3cold_allowed attribute > * of the pci device > */ > -void igt_pm_get_d3cold_allowed(struct igt_device_card *card, char *val) > +void igt_pm_get_d3cold_allowed(const char *pci_slot_name, uint32_t > +*value) > { > char name[PATH_MAX]; > int fd; > > snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%s", > - card->pci_slot_name); > + pci_slot_name); > > fd = open(name, O_RDONLY); > igt_assert_f(fd >= 0, "Can't open %s\n", name); > > - igt_sysfs_read(fd, "d3cold_allowed", val, sizeof(val)); > + __igt_sysfs_get_u32(fd, "d3cold_allowed", value); > > close(fd); > } > > /** > - * igt_pm_get_d3cold_allowed: > - * @igt_device_card: device card > - * @val: value to be written > + * igt_pm_set_d3cold_allowed: > + * @pci_slot_name: slot name of pci device > + * @value: value to be written > * > * writes the value to d3cold_allowed attribute of pci device > */ > -void igt_pm_set_d3cold_allowed(struct igt_device_card *card, const char *val) > +void igt_pm_set_d3cold_allowed(const char *pci_slot_name, uint32_t > +value) > { > char name[PATH_MAX]; > int fd; > > snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%s", > - card->pci_slot_name); > + pci_slot_name); > > fd = open(name, O_RDONLY); > igt_assert_f(fd >= 0, "Can't open %s\n", name); > > - igt_sysfs_write(fd, "d3cold_allowed", val, sizeof(val)); > + __igt_sysfs_set_u32(fd, "d3cold_allowed", value); > close(fd); > } > > diff --git a/lib/igt_pm.h b/lib/igt_pm.h index 71ec2f239..306a9eb46 100644 > --- a/lib/igt_pm.h > +++ b/lib/igt_pm.h > @@ -79,8 +79,8 @@ enum igt_acpi_d_state > igt_pm_get_acpi_real_d_state(struct pci_device *pci_dev); void > igt_pm_enable_pci_card_runtime_pm(struct pci_device *root, > struct pci_device *i915); > -void igt_pm_get_d3cold_allowed(struct igt_device_card *card, char *val); -void > igt_pm_set_d3cold_allowed(struct igt_device_card *card, const char *val); > +void igt_pm_get_d3cold_allowed(const char *pci_slot_name, uint32_t > +*value); void igt_pm_set_d3cold_allowed(const char *pci_slot_name, > +uint32_t value); > void igt_pm_setup_pci_card_runtime_pm(struct pci_device *pci_dev); void > igt_pm_restore_pci_card_runtime_pm(void); > void igt_pm_print_pci_card_runtime_status(void); > diff --git a/tests/i915/i915_suspend.c b/tests/i915/i915_suspend.c index > 851e797c2..c25805584 100644 > --- a/tests/i915/i915_suspend.c > +++ b/tests/i915/i915_suspend.c > @@ -283,7 +283,7 @@ static void > test_suspend_without_i915(int state) > { > struct igt_device_card card; > - char d3cold_allowed[2]; > + uint32_t d3cold_allowed; > int fd; > > fd = __drm_open_driver(DRIVER_INTEL); > @@ -297,8 +297,8 @@ test_suspend_without_i915(int state) > */ > if (state == SUSPEND_STATE_FREEZE && > igt_device_find_first_i915_discrete_card(&card)) { > - igt_pm_get_d3cold_allowed(&card, d3cold_allowed); > - igt_pm_set_d3cold_allowed(&card, "0\n"); > + igt_pm_get_d3cold_allowed(card.pci_slot_name, > &d3cold_allowed); > + igt_pm_set_d3cold_allowed(card.pci_slot_name, 0); > } > drm_close_driver(fd); > > @@ -308,7 +308,7 @@ test_suspend_without_i915(int state) > igt_system_suspend_autoresume(state, SUSPEND_TEST_NONE); > > if (state == SUSPEND_STATE_FREEZE && strlen(card.card)) > - igt_pm_set_d3cold_allowed(&card, d3cold_allowed); > + igt_pm_set_d3cold_allowed(card.pci_slot_name, > d3cold_allowed); > > igt_kmsg(KMSG_INFO "Re-loading i915 \n"); > igt_assert_eq(igt_i915_driver_load(NULL), 0); > -- > 2.40.0 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v2 3/4] tests/xe: use igt_pm library functions 2023-08-04 10:31 [igt-dev] [PATCH i-g-t v2 0/4] Modify igt_pm functions and add GT C6 freeze test Riana Tauro 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 1/4] lib/igt_device: Add a function to get the pci slot name Riana Tauro 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 2/4] lib/igt_pm: change d3cold_allowed function parameters Riana Tauro @ 2023-08-04 10:31 ` Riana Tauro 2023-08-08 8:25 ` Gupta, Anshuman 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 4/4] tests/xe: Add a test that validates residency during s2idle Riana Tauro ` (3 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Riana Tauro @ 2023-08-04 10:31 UTC (permalink / raw) To: igt-dev; +Cc: badal.nilawar Modify xe_pm tests to use the d3cold_allowed get/set functions from igt_pm library. Signed-off-by: Riana Tauro <riana.tauro@intel.com> --- tests/xe/xe_pm.c | 43 +++++++------------------------------------ 1 file changed, 7 insertions(+), 36 deletions(-) diff --git a/tests/xe/xe_pm.c b/tests/xe/xe_pm.c index 16af38883..2126cbb38 100644 --- a/tests/xe/xe_pm.c +++ b/tests/xe/xe_pm.c @@ -33,6 +33,7 @@ typedef struct { int fd_xe; struct pci_device *pci_xe; struct pci_device *pci_root; + char pci_slot_name[NAME_MAX]; } device_t; /* runtime_usage is only available if kernel build CONFIG_PM_ADVANCED_DEBUG */ @@ -44,47 +45,16 @@ static bool runtime_usage_available(struct pci_device *pci) return access(name, F_OK) == 0; } -static int open_d3cold_allowed(struct pci_device *pci) -{ - char name[PATH_MAX]; - int fd; - - snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/d3cold_allowed", - pci->domain, pci->bus, pci->dev, pci->func); - - fd = open(name, O_RDWR); - igt_assert_f(fd >= 0, "Can't open %s\n", name); - - return fd; -} - -static void get_d3cold_allowed(struct pci_device *pci, char *d3cold_allowed) -{ - int fd = open_d3cold_allowed(pci); - - igt_assert(read(fd, d3cold_allowed, 2)); - close(fd); -} - -static void set_d3cold_allowed(struct pci_device *pci, - const char *d3cold_allowed) -{ - int fd = open_d3cold_allowed(pci); - - igt_assert(write(fd, d3cold_allowed, 2)); - close(fd); -} - static bool setup_d3(device_t device, enum igt_acpi_d_state state) { switch (state) { case IGT_ACPI_D3Cold: igt_require(igt_pm_acpi_d3cold_supported(device.pci_root)); igt_pm_enable_pci_card_runtime_pm(device.pci_root, NULL); - set_d3cold_allowed(device.pci_xe, "1\n"); + igt_pm_set_d3cold_allowed(device.pci_slot_name, 1); return true; case IGT_ACPI_D3Hot: - set_d3cold_allowed(device.pci_xe, "0\n"); + igt_pm_set_d3cold_allowed(device.pci_slot_name, 0); return true; default: igt_debug("Invalid D3 Selection\n"); @@ -350,7 +320,7 @@ igt_main { struct drm_xe_engine_class_instance *hwe; device_t device; - char d3cold_allowed[2]; + uint32_t d3cold_allowed; const struct s_state { const char *name; enum igt_suspend_state state; @@ -374,12 +344,13 @@ igt_main device.fd_xe = drm_open_driver(DRIVER_XE); device.pci_xe = igt_device_get_pci_device(device.fd_xe); device.pci_root = igt_device_get_pci_root_port(device.fd_xe); + igt_device_get_pci_slot_name(device.fd_xe, device.pci_slot_name); /* Always perform initial once-basic exec checking for health */ xe_for_each_hw_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM); - get_d3cold_allowed(device.pci_xe, d3cold_allowed); + igt_pm_get_d3cold_allowed(device.pci_slot_name, &d3cold_allowed); igt_assert(igt_setup_runtime_pm(device.fd_xe)); } @@ -441,7 +412,7 @@ igt_main } igt_fixture { - set_d3cold_allowed(device.pci_xe, d3cold_allowed); + igt_pm_set_d3cold_allowed(device.pci_slot_name, d3cold_allowed); igt_restore_runtime_pm(); drm_close_driver(device.fd_xe); } -- 2.40.0 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 3/4] tests/xe: use igt_pm library functions 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 3/4] tests/xe: use igt_pm library functions Riana Tauro @ 2023-08-08 8:25 ` Gupta, Anshuman 0 siblings, 0 replies; 13+ messages in thread From: Gupta, Anshuman @ 2023-08-08 8:25 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org; +Cc: Nilawar, Badal > -----Original Message----- > From: Tauro, Riana <riana.tauro@intel.com> > Sent: Friday, August 4, 2023 4:01 PM > To: igt-dev@lists.freedesktop.org > Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman > <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>; > Belgaumkar, Vinay <vinay.belgaumkar@intel.com>; Nilawar, Badal > <badal.nilawar@intel.com>; Sundaresan, Sujaritha > <sujaritha.sundaresan@intel.com> > Subject: [PATCH i-g-t v2 3/4] tests/xe: use igt_pm library functions > > Modify xe_pm tests to use the d3cold_allowed get/set functions from igt_pm > library. > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> > --- > tests/xe/xe_pm.c | 43 +++++++------------------------------------ > 1 file changed, 7 insertions(+), 36 deletions(-) > > diff --git a/tests/xe/xe_pm.c b/tests/xe/xe_pm.c index 16af38883..2126cbb38 > 100644 > --- a/tests/xe/xe_pm.c > +++ b/tests/xe/xe_pm.c > @@ -33,6 +33,7 @@ typedef struct { > int fd_xe; > struct pci_device *pci_xe; > struct pci_device *pci_root; > + char pci_slot_name[NAME_MAX]; > } device_t; > > /* runtime_usage is only available if kernel build > CONFIG_PM_ADVANCED_DEBUG */ @@ -44,47 +45,16 @@ static bool > runtime_usage_available(struct pci_device *pci) > return access(name, F_OK) == 0; > } > > -static int open_d3cold_allowed(struct pci_device *pci) -{ > - char name[PATH_MAX]; > - int fd; > - > - snprintf(name, PATH_MAX, > "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/d3cold_allowed", > - pci->domain, pci->bus, pci->dev, pci->func); > - > - fd = open(name, O_RDWR); > - igt_assert_f(fd >= 0, "Can't open %s\n", name); > - > - return fd; > -} > - > -static void get_d3cold_allowed(struct pci_device *pci, char *d3cold_allowed) -{ > - int fd = open_d3cold_allowed(pci); > - > - igt_assert(read(fd, d3cold_allowed, 2)); > - close(fd); > -} > - > -static void set_d3cold_allowed(struct pci_device *pci, > - const char *d3cold_allowed) > -{ > - int fd = open_d3cold_allowed(pci); > - > - igt_assert(write(fd, d3cold_allowed, 2)); > - close(fd); > -} > - > static bool setup_d3(device_t device, enum igt_acpi_d_state state) { > switch (state) { > case IGT_ACPI_D3Cold: > igt_require(igt_pm_acpi_d3cold_supported(device.pci_root)); > igt_pm_enable_pci_card_runtime_pm(device.pci_root, NULL); > - set_d3cold_allowed(device.pci_xe, "1\n"); > + igt_pm_set_d3cold_allowed(device.pci_slot_name, 1); > return true; > case IGT_ACPI_D3Hot: > - set_d3cold_allowed(device.pci_xe, "0\n"); > + igt_pm_set_d3cold_allowed(device.pci_slot_name, 0); > return true; > default: > igt_debug("Invalid D3 Selection\n"); > @@ -350,7 +320,7 @@ igt_main > { > struct drm_xe_engine_class_instance *hwe; > device_t device; > - char d3cold_allowed[2]; > + uint32_t d3cold_allowed; > const struct s_state { > const char *name; > enum igt_suspend_state state; > @@ -374,12 +344,13 @@ igt_main > device.fd_xe = drm_open_driver(DRIVER_XE); > device.pci_xe = igt_device_get_pci_device(device.fd_xe); > device.pci_root = igt_device_get_pci_root_port(device.fd_xe); > + igt_device_get_pci_slot_name(device.fd_xe, > device.pci_slot_name); > > /* Always perform initial once-basic exec checking for health */ > xe_for_each_hw_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM); > > - get_d3cold_allowed(device.pci_xe, d3cold_allowed); > + igt_pm_get_d3cold_allowed(device.pci_slot_name, > &d3cold_allowed); > igt_assert(igt_setup_runtime_pm(device.fd_xe)); > } > > @@ -441,7 +412,7 @@ igt_main > } > > igt_fixture { > - set_d3cold_allowed(device.pci_xe, d3cold_allowed); > + igt_pm_set_d3cold_allowed(device.pci_slot_name, > d3cold_allowed); > igt_restore_runtime_pm(); > drm_close_driver(device.fd_xe); > } > -- > 2.40.0 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v2 4/4] tests/xe: Add a test that validates residency during s2idle 2023-08-04 10:31 [igt-dev] [PATCH i-g-t v2 0/4] Modify igt_pm functions and add GT C6 freeze test Riana Tauro ` (2 preceding siblings ...) 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 3/4] tests/xe: use igt_pm library functions Riana Tauro @ 2023-08-04 10:31 ` Riana Tauro 2023-08-08 8:35 ` Gupta, Anshuman 2023-08-04 11:13 ` [igt-dev] ○ CI.xeBAT: info for Modify igt_pm functions and add GT C6 freeze test Patchwork ` (2 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Riana Tauro @ 2023-08-04 10:31 UTC (permalink / raw) To: igt-dev; +Cc: badal.nilawar During s2idle, the device is powered up and GT C6 enabled so we expect the residency to increase across suspend. Add a test that validates the residency over a s2idle cycle is within the threshold. v2: skip d3cold disable for igfx (Anshuman) Signed-off-by: Riana Tauro <riana.tauro@intel.com> --- tests/xe/xe_pm_residency.c | 56 ++++++++++++++++++++++++++++++++++---- 1 file changed, 51 insertions(+), 5 deletions(-) diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c index 4936de166..78d820aee 100644 --- a/tests/xe/xe_pm_residency.c +++ b/tests/xe/xe_pm_residency.c @@ -10,8 +10,10 @@ * Functionality: GT C States * Test category: functionality test */ +#include <limits.h> #include "igt.h" +#include "igt_device.h" #include "igt_sysfs.h" #include "xe/xe_query.h" @@ -29,6 +31,11 @@ const double tolerance = 0.1; (tol) * 100.0, (tol) * 100.0, \ (double)(ref)) +enum test_type { + TEST_S2IDLE, + TEST_SLEEP, +}; + /** * SUBTEST: gt-c6-on-idle * Description: Validate GT C6 state on idle @@ -38,9 +45,22 @@ const double tolerance = 0.1; * Description: basic residency test to validate idle residency * measured over a time interval is within the tolerance * Run type: FULL + * + * SUBTEST: gt-c6-freeze + * Description: Validate idle residency measured over suspend(s2idle) + * is within the tolerance + * Run type: FULL */ IGT_TEST_DESCRIPTION("Tests for gtidle properties"); +static unsigned long walltime_ms(void) +{ + struct timespec ts; + + clock_gettime(CLOCK_REALTIME, &ts); + return ts.tv_sec * 1000 + ts.tv_nsec / 1000000; +} + static unsigned int measured_usleep(unsigned int usec) { struct timespec ts = { }; @@ -69,15 +89,25 @@ static unsigned long read_idle_residency(int fd, int gt) return residency; } -static void test_idle_residency(int fd, int gt) +static void test_idle_residency(int fd, int gt, enum test_type flag) { unsigned long elapsed_ms, residency_start, residency_end; igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT not in C6\n"); - residency_start = read_idle_residency(fd, gt); - elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000; - residency_end = read_idle_residency(fd, gt); + if (flag == TEST_S2IDLE) { + residency_start = read_idle_residency(fd, gt); + elapsed_ms -= walltime_ms(); + igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE, SUSPEND_TEST_NONE); + elapsed_ms += walltime_ms(); + residency_end = read_idle_residency(fd, gt); + } + + if (flag == TEST_SLEEP) { + residency_start = read_idle_residency(fd, gt); + elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000; + residency_end = read_idle_residency(fd, gt); + } igt_info("Measured %lums of idle residency in %lums\n", residency_end - residency_start, elapsed_ms); @@ -88,6 +118,8 @@ static void test_idle_residency(int fd, int gt) igt_main { int fd, gt; + char pci_slot_name[NAME_MAX]; + uint32_t d3cold_allowed; igt_fixture { fd = drm_open_driver(DRIVER_XE); @@ -99,10 +131,24 @@ igt_main xe_for_each_gt(fd, gt) igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT not in C6\n"); + igt_describe("Validate idle residency measured over suspend cycle is within the tolerance"); + igt_subtest("gt-c6-freeze") { + if (xe_has_vram(fd)) { + igt_device_get_pci_slot_name(fd, pci_slot_name); + igt_pm_get_d3cold_allowed(pci_slot_name, &d3cold_allowed); + igt_pm_set_d3cold_allowed(pci_slot_name, 0); + } + xe_for_each_gt(fd, gt) + test_idle_residency(fd, gt, TEST_S2IDLE); + + if (xe_has_vram(fd)) + igt_pm_set_d3cold_allowed(pci_slot_name, d3cold_allowed); + } + igt_describe("Validate idle residency measured over a time interval is within the tolerance"); igt_subtest("idle-residency") xe_for_each_gt(fd, gt) - test_idle_residency(fd, gt); + test_idle_residency(fd, gt, TEST_SLEEP); igt_fixture { close(fd); -- 2.40.0 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 4/4] tests/xe: Add a test that validates residency during s2idle 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 4/4] tests/xe: Add a test that validates residency during s2idle Riana Tauro @ 2023-08-08 8:35 ` Gupta, Anshuman 2023-08-09 5:16 ` Riana Tauro 0 siblings, 1 reply; 13+ messages in thread From: Gupta, Anshuman @ 2023-08-08 8:35 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org; +Cc: Nilawar, Badal > -----Original Message----- > From: Tauro, Riana <riana.tauro@intel.com> > Sent: Friday, August 4, 2023 4:01 PM > To: igt-dev@lists.freedesktop.org > Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman > <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>; > Belgaumkar, Vinay <vinay.belgaumkar@intel.com>; Nilawar, Badal > <badal.nilawar@intel.com>; Sundaresan, Sujaritha > <sujaritha.sundaresan@intel.com> > Subject: [PATCH i-g-t v2 4/4] tests/xe: Add a test that validates residency during > s2idle > > During s2idle, the device is powered up and GT C6 enabled so we expect the > residency to increase across suspend. > Add a test that validates the residency over a s2idle cycle is within the threshold. > > v2: skip d3cold disable for igfx (Anshuman) > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> > --- > tests/xe/xe_pm_residency.c | 56 ++++++++++++++++++++++++++++++++++---- > 1 file changed, 51 insertions(+), 5 deletions(-) > > diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c index > 4936de166..78d820aee 100644 > --- a/tests/xe/xe_pm_residency.c > +++ b/tests/xe/xe_pm_residency.c > @@ -10,8 +10,10 @@ > * Functionality: GT C States > * Test category: functionality test > */ > +#include <limits.h> > > #include "igt.h" > +#include "igt_device.h" > #include "igt_sysfs.h" > > #include "xe/xe_query.h" > @@ -29,6 +31,11 @@ const double tolerance = 0.1; > (tol) * 100.0, (tol) * 100.0, \ > (double)(ref)) > > +enum test_type { > + TEST_S2IDLE, > + TEST_SLEEP, How about TEST_IDLE ? > +}; > + > /** > * SUBTEST: gt-c6-on-idle > * Description: Validate GT C6 state on idle @@ -38,9 +45,22 @@ const double > tolerance = 0.1; > * Description: basic residency test to validate idle residency > * measured over a time interval is within the tolerance > * Run type: FULL > + * > + * SUBTEST: gt-c6-freeze > + * Description: Validate idle residency measured over suspend(s2idle) > + * is within the tolerance > + * Run type: FULL > */ > IGT_TEST_DESCRIPTION("Tests for gtidle properties"); > > +static unsigned long walltime_ms(void) > +{ > + struct timespec ts; > + > + clock_gettime(CLOCK_REALTIME, &ts); > + return ts.tv_sec * 1000 + ts.tv_nsec / 1000000; } > + > static unsigned int measured_usleep(unsigned int usec) { > struct timespec ts = { }; > @@ -69,15 +89,25 @@ static unsigned long read_idle_residency(int fd, int gt) > return residency; > } > > -static void test_idle_residency(int fd, int gt) > +static void test_idle_residency(int fd, int gt, enum test_type flag) > { > unsigned long elapsed_ms, residency_start, residency_end; > > igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT not in C6\n"); > > - residency_start = read_idle_residency(fd, gt); > - elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000; > - residency_end = read_idle_residency(fd, gt); > + if (flag == TEST_S2IDLE) { > + residency_start = read_idle_residency(fd, gt); > + elapsed_ms -= walltime_ms(); > + igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE, > SUSPEND_TEST_NONE); > + elapsed_ms += walltime_ms(); > + residency_end = read_idle_residency(fd, gt); > + } > + > + if (flag == TEST_SLEEP) { > + residency_start = read_idle_residency(fd, gt); > + elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / > 1000; > + residency_end = read_idle_residency(fd, gt); > + } > > igt_info("Measured %lums of idle residency in %lums\n", > residency_end - residency_start, elapsed_ms); @@ -88,6 > +118,8 @@ static void test_idle_residency(int fd, int gt) igt_main { > int fd, gt; Nit: Declare fd and gt after d3cold_allowed. Thanks, Anshuman. > + char pci_slot_name[NAME_MAX]; > + uint32_t d3cold_allowed; > > igt_fixture { > fd = drm_open_driver(DRIVER_XE); > @@ -99,10 +131,24 @@ igt_main > xe_for_each_gt(fd, gt) > igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), > "GT not in C6\n"); > > + igt_describe("Validate idle residency measured over suspend cycle is > within the tolerance"); > + igt_subtest("gt-c6-freeze") { > + if (xe_has_vram(fd)) { > + igt_device_get_pci_slot_name(fd, pci_slot_name); > + igt_pm_get_d3cold_allowed(pci_slot_name, > &d3cold_allowed); > + igt_pm_set_d3cold_allowed(pci_slot_name, 0); > + } > + xe_for_each_gt(fd, gt) > + test_idle_residency(fd, gt, TEST_S2IDLE); > + > + if (xe_has_vram(fd)) > + igt_pm_set_d3cold_allowed(pci_slot_name, > d3cold_allowed); > + } > + > igt_describe("Validate idle residency measured over a time interval is > within the tolerance"); > igt_subtest("idle-residency") > xe_for_each_gt(fd, gt) > - test_idle_residency(fd, gt); > + test_idle_residency(fd, gt, TEST_SLEEP); > > igt_fixture { > close(fd); > -- > 2.40.0 ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 4/4] tests/xe: Add a test that validates residency during s2idle 2023-08-08 8:35 ` Gupta, Anshuman @ 2023-08-09 5:16 ` Riana Tauro 0 siblings, 0 replies; 13+ messages in thread From: Riana Tauro @ 2023-08-09 5:16 UTC (permalink / raw) To: Gupta, Anshuman, igt-dev@lists.freedesktop.org; +Cc: Nilawar, Badal Hi Anshuman Thanks for the review On 8/8/2023 2:05 PM, Gupta, Anshuman wrote: > > >> -----Original Message----- >> From: Tauro, Riana <riana.tauro@intel.com> >> Sent: Friday, August 4, 2023 4:01 PM >> To: igt-dev@lists.freedesktop.org >> Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman >> <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>; >> Belgaumkar, Vinay <vinay.belgaumkar@intel.com>; Nilawar, Badal >> <badal.nilawar@intel.com>; Sundaresan, Sujaritha >> <sujaritha.sundaresan@intel.com> >> Subject: [PATCH i-g-t v2 4/4] tests/xe: Add a test that validates residency during >> s2idle >> >> During s2idle, the device is powered up and GT C6 enabled so we expect the >> residency to increase across suspend. >> Add a test that validates the residency over a s2idle cycle is within the threshold. >> >> v2: skip d3cold disable for igfx (Anshuman) >> >> Signed-off-by: Riana Tauro <riana.tauro@intel.com> >> --- >> tests/xe/xe_pm_residency.c | 56 ++++++++++++++++++++++++++++++++++---- >> 1 file changed, 51 insertions(+), 5 deletions(-) >> >> diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c index >> 4936de166..78d820aee 100644 >> --- a/tests/xe/xe_pm_residency.c >> +++ b/tests/xe/xe_pm_residency.c >> @@ -10,8 +10,10 @@ >> * Functionality: GT C States >> * Test category: functionality test >> */ >> +#include <limits.h> >> >> #include "igt.h" >> +#include "igt_device.h" >> #include "igt_sysfs.h" >> >> #include "xe/xe_query.h" >> @@ -29,6 +31,11 @@ const double tolerance = 0.1; >> (tol) * 100.0, (tol) * 100.0, \ >> (double)(ref)) >> >> +enum test_type { >> + TEST_S2IDLE, >> + TEST_SLEEP, > How about TEST_IDLE ? Will change this >> +}; >> + >> /** >> * SUBTEST: gt-c6-on-idle >> * Description: Validate GT C6 state on idle @@ -38,9 +45,22 @@ const double >> tolerance = 0.1; >> * Description: basic residency test to validate idle residency >> * measured over a time interval is within the tolerance >> * Run type: FULL >> + * >> + * SUBTEST: gt-c6-freeze >> + * Description: Validate idle residency measured over suspend(s2idle) >> + * is within the tolerance >> + * Run type: FULL >> */ >> IGT_TEST_DESCRIPTION("Tests for gtidle properties"); >> >> +static unsigned long walltime_ms(void) >> +{ >> + struct timespec ts; >> + >> + clock_gettime(CLOCK_REALTIME, &ts); >> + return ts.tv_sec * 1000 + ts.tv_nsec / 1000000; } >> + >> static unsigned int measured_usleep(unsigned int usec) { >> struct timespec ts = { }; >> @@ -69,15 +89,25 @@ static unsigned long read_idle_residency(int fd, int gt) >> return residency; >> } >> >> -static void test_idle_residency(int fd, int gt) >> +static void test_idle_residency(int fd, int gt, enum test_type flag) >> { >> unsigned long elapsed_ms, residency_start, residency_end; >> >> igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT not in C6\n"); >> >> - residency_start = read_idle_residency(fd, gt); >> - elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000; >> - residency_end = read_idle_residency(fd, gt); >> + if (flag == TEST_S2IDLE) { >> + residency_start = read_idle_residency(fd, gt); >> + elapsed_ms -= walltime_ms(); >> + igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE, >> SUSPEND_TEST_NONE); >> + elapsed_ms += walltime_ms(); >> + residency_end = read_idle_residency(fd, gt); >> + } >> + >> + if (flag == TEST_SLEEP) { >> + residency_start = read_idle_residency(fd, gt); >> + elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / >> 1000; >> + residency_end = read_idle_residency(fd, gt); >> + } >> >> igt_info("Measured %lums of idle residency in %lums\n", >> residency_end - residency_start, elapsed_ms); @@ -88,6 >> +118,8 @@ static void test_idle_residency(int fd, int gt) igt_main { >> int fd, gt; > Nit: Declare fd and gt after d3cold_allowed. Will fix this in the next revision Thanks Riana > Thanks, > Anshuman. >> + char pci_slot_name[NAME_MAX]; >> + uint32_t d3cold_allowed; >> >> igt_fixture { >> fd = drm_open_driver(DRIVER_XE); >> @@ -99,10 +131,24 @@ igt_main >> xe_for_each_gt(fd, gt) >> igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), >> "GT not in C6\n"); >> >> + igt_describe("Validate idle residency measured over suspend cycle is >> within the tolerance"); >> + igt_subtest("gt-c6-freeze") { >> + if (xe_has_vram(fd)) { >> + igt_device_get_pci_slot_name(fd, pci_slot_name); >> + igt_pm_get_d3cold_allowed(pci_slot_name, >> &d3cold_allowed); >> + igt_pm_set_d3cold_allowed(pci_slot_name, 0); >> + } >> + xe_for_each_gt(fd, gt) >> + test_idle_residency(fd, gt, TEST_S2IDLE); >> + >> + if (xe_has_vram(fd)) >> + igt_pm_set_d3cold_allowed(pci_slot_name, >> d3cold_allowed); >> + } >> + >> igt_describe("Validate idle residency measured over a time interval is >> within the tolerance"); >> igt_subtest("idle-residency") >> xe_for_each_gt(fd, gt) >> - test_idle_residency(fd, gt); >> + test_idle_residency(fd, gt, TEST_SLEEP); >> >> igt_fixture { >> close(fd); >> -- >> 2.40.0 > ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for Modify igt_pm functions and add GT C6 freeze test 2023-08-04 10:31 [igt-dev] [PATCH i-g-t v2 0/4] Modify igt_pm functions and add GT C6 freeze test Riana Tauro ` (3 preceding siblings ...) 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 4/4] tests/xe: Add a test that validates residency during s2idle Riana Tauro @ 2023-08-04 11:13 ` Patchwork 2023-08-04 11:23 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-04 16:22 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-08-04 11:13 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 347 bytes --] == Series Details == Series: Modify igt_pm functions and add GT C6 freeze test URL : https://patchwork.freedesktop.org/series/122020/ State : info == Summary == Participating hosts: bat-pvc-2 bat-atsm-2 bat-dg2-oem2 bat-adlp-7 Missing hosts results[0]: Results: [IGTPW_9516](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9516/index.html) [-- Attachment #2: Type: text/html, Size: 863 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Modify igt_pm functions and add GT C6 freeze test 2023-08-04 10:31 [igt-dev] [PATCH i-g-t v2 0/4] Modify igt_pm functions and add GT C6 freeze test Riana Tauro ` (4 preceding siblings ...) 2023-08-04 11:13 ` [igt-dev] ○ CI.xeBAT: info for Modify igt_pm functions and add GT C6 freeze test Patchwork @ 2023-08-04 11:23 ` Patchwork 2023-08-04 16:22 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-08-04 11:23 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 10467 bytes --] == Series Details == Series: Modify igt_pm functions and add GT C6 freeze test URL : https://patchwork.freedesktop.org/series/122020/ State : success == Summary == CI Bug Log - changes from CI_DRM_13473 -> IGTPW_9516 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): fi-kbl-soraka Missing (2): bat-rplp-1 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9516 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adlp-9: NOTRUN -> [SKIP][3] ([i915#4613]) +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-adlp-9/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_module_load@load: - fi-kbl-soraka: NOTRUN -> [INCOMPLETE][4] ([i915#1982]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/fi-kbl-soraka/igt@i915_module_load@load.html * igt@i915_pm_rpm@basic-pci-d3-state: - 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_13473/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@module-reload: - bat-adlp-9: NOTRUN -> [FAIL][7] ([i915#7940]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-adlp-9/igt@i915_pm_rpm@module-reload.html - fi-tgl-1115g4: [PASS][8] -> [FAIL][9] ([i915#7940]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html * igt@i915_pm_rps@basic-api: - bat-adlp-9: NOTRUN -> [SKIP][10] ([i915#6621]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-adlp-9/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [PASS][11] -> [DMESG-FAIL][12] ([i915#5334]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][13] ([i915#5334] / [i915#7872]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_lrc: - bat-dg2-11: [PASS][14] -> [INCOMPLETE][15] ([i915#7609] / [i915#7913]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/bat-dg2-11/igt@i915_selftest@live@gt_lrc.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-dg2-11/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][16] ([i915#1886] / [i915#7913]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@slpc: - bat-rpls-1: NOTRUN -> [DMESG-WARN][17] ([i915#6367]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-rpls-1: NOTRUN -> [ABORT][18] ([i915#6687] / [i915#7978] / [i915#8668]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-adlp-9: NOTRUN -> [SKIP][19] ([i915#7828]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-adlp-9/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][20] ([fdo#109271]) +16 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@prime_vgem@basic-fence-read: - bat-adlp-9: NOTRUN -> [SKIP][21] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-adlp-9/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - bat-adlp-9: [FAIL][22] ([i915#7940]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-cfl-8109u: [FAIL][24] ([i915#7940]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html - fi-cfl-8700k: [FAIL][26] ([i915#7940]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html - bat-adlp-9: [ABORT][28] ([i915#7977] / [i915#8668]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/bat-adlp-9/igt@i915_pm_rpm@basic-rte.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-adlp-9/igt@i915_pm_rpm@basic-rte.html * igt@i915_selftest@live@reset: - bat-rpls-1: [ABORT][30] ([i915#4983] / [i915#7461] / [i915#8347] / [i915#8384]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/bat-rpls-1/igt@i915_selftest@live@reset.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-rpls-1/igt@i915_selftest@live@reset.html #### Warnings #### * igt@i915_module_load@load: - bat-adlp-11: [DMESG-WARN][32] ([i915#4423]) -> [ABORT][33] ([i915#4423]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/bat-adlp-11/igt@i915_module_load@load.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_pm_rpm@basic-pci-d3-state: - fi-cfl-8700k: [FAIL][34] ([i915#7940]) -> [FAIL][35] ([i915#7691]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/fi-cfl-8700k/igt@i915_pm_rpm@basic-pci-d3-state.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/fi-cfl-8700k/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-skl-guc: [FAIL][36] ([i915#7691]) -> [FAIL][37] ([i915#7940]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@kms_addfb_basic@unused-offsets: - bat-atsm-1: [SKIP][38] ([i915#6077]) -> [INCOMPLETE][39] ([i915#2295]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/bat-atsm-1/igt@kms_addfb_basic@unused-offsets.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/bat-atsm-1/igt@kms_addfb_basic@unused-offsets.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7609]: https://gitlab.freedesktop.org/drm/intel/issues/7609 [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7414 -> IGTPW_9516 CI-20190529: 20190529 CI_DRM_13473: 561c056959bf2ef8576cf3cfb59e3c5fd2951015 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9516: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/index.html IGT_7414: 056c9d7f2a63dd6d0b9b6462b4ab1b096178dcc6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_pm_residency@gt-c6-freeze == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/index.html [-- Attachment #2: Type: text/html, Size: 12716 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Modify igt_pm functions and add GT C6 freeze test 2023-08-04 10:31 [igt-dev] [PATCH i-g-t v2 0/4] Modify igt_pm functions and add GT C6 freeze test Riana Tauro ` (5 preceding siblings ...) 2023-08-04 11:23 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-08-04 16:22 ` Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-08-04 16:22 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 70655 bytes --] == Series Details == Series: Modify igt_pm functions and add GT C6 freeze test URL : https://patchwork.freedesktop.org/series/122020/ State : success == Summary == CI Bug Log - changes from CI_DRM_13473_full -> IGTPW_9516_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/index.html Participating hosts (11 -> 9) ------------------------------ Missing (2): shard-rkl0 pig-kbl-iris Known issues ------------ Here are the changes found in IGTPW_9516_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][1] ([i915#7701]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-8/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@isolation@bcs0: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#8414]) +10 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-11/igt@drm_fdinfo@isolation@bcs0.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#7697]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-4/igt@gem_basic@multigpu-create-close.html * igt@gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-snb2/igt@gem_ctx_persistence@file.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8555]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: NOTRUN -> [FAIL][6] ([i915#2410]) +2 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-6/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_ctx_persistence@saturated-hostile@vecs0: - shard-mtlp: [PASS][7] -> [FAIL][8] ([i915#7816]) +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-3/igt@gem_ctx_persistence@saturated-hostile@vecs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-8/igt@gem_ctx_persistence@saturated-hostile@vecs0.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#280]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg2: [PASS][10] -> [ABORT][11] ([i915#7975] / [i915#8213]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-11/igt@gem_eio@hibernate.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-2/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-dg1: [PASS][12] -> [FAIL][13] ([i915#5784]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg1-15/igt@gem_eio@kms.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-12/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][14] -> [FAIL][15] ([i915#5784]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-8/igt@gem_eio@reset-stress.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-3/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@noheartbeat: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8555]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-19/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: [PASS][17] -> [FAIL][18] ([i915#4475]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#3539] / [i915#4852]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-17/igt@gem_exec_fair@basic-none.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#4473] / [i915#4771]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-2/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-rkl: [PASS][21] -> [FAIL][22] ([i915#2842]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-glk: NOTRUN -> [FAIL][23] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][24] -> [FAIL][25] ([i915#2842]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [PASS][26] -> [FAIL][27] ([i915#2842]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-apl3/igt@gem_exec_fair@basic-pace-solo@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-apl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4812]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-8/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) +2 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-1/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#3281]) +4 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3281]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-15/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-wc: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-1/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][34] ([i915#7975] / [i915#8213]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-6/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_lmem_swapping@heavy-random: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4613]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-7/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4613]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#4613]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-glk4/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#8289]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-7/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4077]) +2 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-18/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_gtt@fault-concurrent: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4077]) +4 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-8/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4077]) +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-3/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4083]) +3 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-5/igt@gem_mmap_wc@read-write.html * igt@gem_pread@display: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#3282]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-4/igt@gem_pread@display.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4270]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@read-write: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3282]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-16/igt@gem_readwrite@read-write.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3282]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-8/igt@gem_readwrite@read-write.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#8428]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-7/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#5190]) +5 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-10/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_render_tiled_blits@basic: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4079]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-7/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4079]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-10/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-rkl: NOTRUN -> [SKIP][51] ([i915#8411]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_userptr_blits@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3297]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-3/igt@gem_userptr_blits@set-cache-level.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3297]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap.html * igt@gen7_exec_parse@basic-offset: - shard-dg1: NOTRUN -> [SKIP][54] ([fdo#109289]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-15/igt@gen7_exec_parse@basic-offset.html - shard-mtlp: NOTRUN -> [SKIP][55] ([fdo#109289]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-3/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@unaligned-jump: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#2856]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-8/igt@gen9_exec_parse@unaligned-jump.html - shard-rkl: NOTRUN -> [SKIP][57] ([i915#2527]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-7/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [PASS][58] -> [FAIL][59] ([i915#7069]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-8/igt@i915_hangman@gt-engine-hang@vcs0.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-5/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [PASS][60] -> [SKIP][61] ([i915#4281]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-tglu-4/igt@i915_pm_dc@dc9-dpms.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-tglu-3/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#6590]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-16/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#1937]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-11/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#1902]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-6/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [PASS][65] -> [FAIL][66] ([i915#3591]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][67] -> [SKIP][68] ([i915#1397]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-rkl-6/igt@i915_pm_rpm@dpms-non-lpsp.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@i2c: - shard-dg2: [PASS][69] -> [FAIL][70] ([i915#8717]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-11/igt@i915_pm_rpm@i2c.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-2/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][71] -> [SKIP][72] ([i915#1397]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg1-13/igt@i915_pm_rpm@modeset-non-lpsp.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#1397]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-4/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][74] -> [SKIP][75] ([i915#1397]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-1/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rpm@system-suspend-modeset: - shard-dg2: [PASS][76] -> [FAIL][77] ([fdo#103375]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-10/igt@i915_pm_rpm@system-suspend-modeset.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-11/igt@i915_pm_rpm@system-suspend-modeset.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#8925]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-3/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_selftest@live@gt_mocs: - shard-mtlp: [PASS][79] -> [DMESG-FAIL][80] ([i915#7059]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-3/igt@i915_selftest@live@gt_mocs.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-4/igt@i915_selftest@live@gt_mocs.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4212]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#3826]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: - shard-mtlp: [PASS][83] -> [FAIL][84] ([i915#2521]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#8709]) +11 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#8502]) +3 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][87] ([i915#8247]) +3 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][88] -> [FAIL][89] ([i915#5138]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: [PASS][90] -> [FAIL][91] ([i915#3743]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#5286]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][93] ([fdo#111614]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-5/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][94] ([fdo#111614] / [i915#3638]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][95] ([fdo#111615]) +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5190]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][97] ([fdo#110723]) +3 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_joiner@invalid-modeset: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#2705]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-1/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_mc_ccs: - shard-glk: NOTRUN -> [SKIP][99] ([fdo#109271]) +38 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-glk8/igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3734] / [i915#5354] / [i915#6095]) +2 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-2/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6095]) +6 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-1/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#5354] / [i915#6095]) +7 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#3886] / [i915#6095]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-14/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#3886]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-glk3/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#5354] / [i915#6095]) +1 similar issue [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-18/igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-12/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#3689] / [i915#3886] / [i915#5354]) +1 similar issue [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-1/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#3689] / [i915#5354]) +3 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html - shard-rkl: NOTRUN -> [SKIP][110] ([i915#5354]) +13 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4087] / [i915#7213]) +3 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4087]) +3 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@degamma: - shard-mtlp: NOTRUN -> [SKIP][113] ([fdo#111827]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-1/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#7828]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-14/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#7828]) +2 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#7828]) +5 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#7118]) +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-6/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][118] ([i915#1339]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#3359]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3359]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-mtlp: [PASS][121] -> [FAIL][122] ([i915#8248]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: NOTRUN -> [SKIP][123] ([fdo#111825]) +5 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: NOTRUN -> [SKIP][124] ([fdo#109274] / [i915#5354]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#3555]) +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-8/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [PASS][126] -> [FAIL][127] ([i915#4767]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-10/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][128] ([fdo#109274]) +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#3637]) +2 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@flip-vs-expired-vblank@a-dp1: - shard-apl: [PASS][130] -> [FAIL][131] ([i915#2122]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-apl6/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-apl3/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#8381]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-1/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend-interruptible@b-vga1: - shard-snb: NOTRUN -> [DMESG-WARN][133] ([i915#8841]) +1 similar issue [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#2672]) +1 similar issue [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#2672]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#2672]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#8708]) +3 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][138] ([fdo#111825]) +5 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#8708]) +3 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][140] ([fdo#111825] / [i915#1825]) +21 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#1825]) +9 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-dg2: [PASS][142] -> [FAIL][143] ([i915#6880]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#3023]) +8 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#3458]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][146] ([fdo#109280]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#5439]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#8708]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#3458]) +4 similar issues [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#5354]) +12 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#1839]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-13/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format@pipe-b-planes: - shard-mtlp: [PASS][152] -> [FAIL][153] ([i915#1623]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-1/igt@kms_plane@pixel-format@pipe-b-planes.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-8/igt@kms_plane@pixel-format@pipe-b-planes.html * igt@kms_plane@plane-panning-top-left@pipe-b-planes: - shard-mtlp: [PASS][154] -> [FAIL][155] ([i915#8892]) +1 similar issue [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-7/igt@kms_plane@plane-panning-top-left@pipe-b-planes.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-4/igt@kms_plane@plane-panning-top-left@pipe-b-planes.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3582]) +3 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-3/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][157] ([i915#8292]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#5176]) +5 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#5176]) +3 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-8/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-25@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#5176]) +15 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#5235]) +5 similar issues [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#5235]) +7 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#5235]) +11 similar issues [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#5235]) +3 similar issues [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#6524]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#658]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-rkl: NOTRUN -> [SKIP][167] ([i915#658]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr@cursor_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#1072]) +1 similar issue [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-4/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_psr@psr2_basic: - shard-snb: NOTRUN -> [SKIP][169] ([fdo#109271]) +79 similar issues [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-snb2/igt@kms_psr@psr2_basic.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#1072]) +2 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-2/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_psr@sprite_mmap_gtt: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#1072]) +1 similar issue [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-19/igt@kms_psr@sprite_mmap_gtt.html * igt@kms_selftest@drm_dp_mst: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#8661]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-14/igt@kms_selftest@drm_dp_mst.html * igt@kms_selftest@drm_format_helper: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#8661]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-1/igt@kms_selftest@drm_format_helper.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#8623]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#8623]) +1 similar issue [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555]) +1 similar issue [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-4/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#2437]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-4/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#2437]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][179] -> [FAIL][180] ([i915#7484]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][181] ([fdo#109289] / [i915#2433]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-15/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@all-busy-idle-check-all: - shard-mtlp: NOTRUN -> [FAIL][182] ([i915#5234]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@event-wait@rcs0: - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#112283]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-1/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#8440]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-5/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#8516]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-7/igt@perf_pmu@rc6-all-gts.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][186] ([fdo#109315]) +5 similar issues [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-7/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-bo: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2575]) +3 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-8/igt@v3d/v3d_submit_cl@bad-bo.html * igt@v3d/v3d_submit_cl@bad-extension: - shard-tglu: NOTRUN -> [SKIP][188] ([fdo#109315] / [i915#2575]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-tglu-4/igt@v3d/v3d_submit_cl@bad-extension.html * igt@v3d/v3d_submit_csd@bad-flag: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#2575]) +1 similar issue [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-18/igt@v3d/v3d_submit_csd@bad-flag.html * igt@v3d/v3d_submit_csd@multiple-job-submission: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#2575]) +2 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-5/igt@v3d/v3d_submit_csd@multiple-job-submission.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#7711]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-15/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_tiling@set-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#7711]) +1 similar issue [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-1/igt@vc4/vc4_tiling@set-bad-modifier.html - shard-rkl: NOTRUN -> [SKIP][193] ([i915#7711]) +1 similar issue [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-2/igt@vc4/vc4_tiling@set-bad-modifier.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#7711]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][195] ([i915#7742]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [FAIL][197] ([i915#2410]) -> [PASS][198] +2 similar issues [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-4/igt@gem_ctx_persistence@engines-hostile@vcs0.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-8/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][199] ([i915#2842]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-glk6/igt@gem_exec_fair@basic-none-share@rcs0.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][201] ([i915#2842]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][203] ([i915#2842]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [ABORT][205] ([i915#7975] / [i915#8213]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [FAIL][207] -> [PASS][208] +1 similar issue [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-5/igt@gem_userptr_blits@nohangcheck.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-5/igt@gem_userptr_blits@nohangcheck.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][209] ([i915#5566]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-glk5/igt@gen9_exec_parse@allowed-single.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-glk7/igt@gen9_exec_parse@allowed-single.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [FAIL][211] ([i915#8456]) -> [PASS][212] +2 similar issues [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-5/igt@i915_hangman@detector@vcs0.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-4/igt@i915_hangman@detector@vcs0.html * igt@i915_hangman@engine-engine-hang@vcs0: - shard-mtlp: [FAIL][213] ([i915#7069]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-2/igt@i915_hangman@engine-engine-hang@vcs0.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-1/igt@i915_hangman@engine-engine-hang@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][215] ([i915#7061] / [i915#8617]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][217] ([fdo#109271]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-apl1/igt@i915_pm_dc@dc9-dpms.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-apl1/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [FAIL][219] ([fdo#103375]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-11/igt@i915_pm_freq_api@freq-suspend@gt0.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg1: [SKIP][221] ([i915#1937]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg1-18/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [FAIL][223] ([i915#3591]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][225] ([i915#1397]) -> [PASS][226] +3 similar issues [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-rkl-1/igt@i915_pm_rpm@dpms-lpsp.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][227] ([i915#1397]) -> [PASS][228] +2 similar issues [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-11/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg1: [SKIP][229] ([i915#1397]) -> [PASS][230] +1 similar issue [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0: - shard-tglu: [FAIL][231] ([i915#7940]) -> [PASS][232] +1 similar issue [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-tglu-4/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-tglu-8/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html * igt@i915_pm_rpm@reg-read-ioctl: - shard-dg1: [FAIL][233] ([i915#7940]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg1-14/igt@i915_pm_rpm@reg-read-ioctl.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-15/igt@i915_pm_rpm@reg-read-ioctl.html * igt@i915_selftest@live@requests: - shard-mtlp: [DMESG-FAIL][235] ([i915#8497]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-3/igt@i915_selftest@live@requests.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-4/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - shard-mtlp: [DMESG-WARN][237] ([i915#6367]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-3/igt@i915_selftest@live@slpc.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-4/igt@i915_selftest@live@slpc.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][239] ([i915#2346]) -> [PASS][240] +1 similar issue [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][241] ([i915#2346]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-dg2: [FAIL][243] ([i915#6880]) -> [PASS][244] +1 similar issue [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][245] ([i915#8292]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-tglu-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-rkl: [ABORT][247] ([i915#8178]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-90.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-mtlp: [ABORT][249] -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-4/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-1/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][251] ([i915#4349]) -> [PASS][252] +3 similar issues [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg2: [FAIL][253] ([i915#5234]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-8/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-6/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-mtlp: [FAIL][255] ([i915#6015]) -> [PASS][256] +3 similar issues [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-6/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-8/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html #### Warnings #### * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [TIMEOUT][257] ([i915#7392] / [i915#8628]) -> [ABORT][258] ([i915#7392] / [i915#8131]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-forked-all.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-mtlp: [TIMEOUT][259] ([i915#7392]) -> [ABORT][260] ([i915#7392] / [i915#8131]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-priority-all.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-tglu: [WARN][261] ([i915#2681]) -> [FAIL][262] ([i915#2681] / [i915#3591]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: - shard-dg1: [SKIP][263] ([i915#5354] / [i915#6095]) -> [SKIP][264] ([i915#4423] / [i915#5354] / [i915#6095]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg1-14/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-12/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_content_protection@mei_interface: - shard-rkl: [SKIP][265] ([i915#7118]) -> [SKIP][266] ([fdo#109300]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-rkl-6/igt@kms_content_protection@mei_interface.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-2/igt@kms_content_protection@mei_interface.html - shard-tglu: [SKIP][267] ([i915#6944] / [i915#7116] / [i915#7118]) -> [SKIP][268] ([fdo#109300]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-tglu-8/igt@kms_content_protection@mei_interface.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-tglu-6/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [FAIL][269] ([i915#2346]) -> [DMESG-FAIL][270] ([i915#2017] / [i915#5954]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][271] ([i915#3955]) -> [SKIP][272] ([fdo#110189] / [i915#3955]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-rkl-7/igt@kms_fbcon_fbt@psr.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-2/igt@kms_fbcon_fbt@psr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][273] ([i915#4816]) -> [SKIP][274] ([i915#4070] / [i915#4816]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][275] ([i915#1072]) -> [SKIP][276] ([i915#1072] / [i915#4078]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg1-14/igt@kms_psr@cursor_plane_move.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg1-18/igt@kms_psr@cursor_plane_move.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][277] ([i915#5493]) -> [CRASH][278] ([i915#7331]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13473/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [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#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [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#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#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#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#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [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#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8178]: https://gitlab.freedesktop.org/drm/intel/issues/8178 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [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#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8892]: https://gitlab.freedesktop.org/drm/intel/issues/8892 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7414 -> IGTPW_9516 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13473: 561c056959bf2ef8576cf3cfb59e3c5fd2951015 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9516: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/index.html IGT_7414: 056c9d7f2a63dd6d0b9b6462b4ab1b096178dcc6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9516/index.html [-- Attachment #2: Type: text/html, Size: 84257 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2023-08-09 5:16 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-04 10:31 [igt-dev] [PATCH i-g-t v2 0/4] Modify igt_pm functions and add GT C6 freeze test Riana Tauro 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 1/4] lib/igt_device: Add a function to get the pci slot name Riana Tauro 2023-08-08 7:54 ` Gupta, Anshuman 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 2/4] lib/igt_pm: change d3cold_allowed function parameters Riana Tauro 2023-08-08 8:02 ` Gupta, Anshuman 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 3/4] tests/xe: use igt_pm library functions Riana Tauro 2023-08-08 8:25 ` Gupta, Anshuman 2023-08-04 10:31 ` [igt-dev] [PATCH i-g-t v2 4/4] tests/xe: Add a test that validates residency during s2idle Riana Tauro 2023-08-08 8:35 ` Gupta, Anshuman 2023-08-09 5:16 ` Riana Tauro 2023-08-04 11:13 ` [igt-dev] ○ CI.xeBAT: info for Modify igt_pm functions and add GT C6 freeze test Patchwork 2023-08-04 11:23 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-04 16:22 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox