* [PATCH 'i-g-t' v2 0/2] Add support for Xe in runtime-pm
@ 2025-03-27 1:48 Soham Purkait
2025-03-27 1:48 ` [PATCH 'i-g-t' v2 1/2] lib/igt_device_scan: Add driver field to igt_device_card struct Soham Purkait
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Soham Purkait @ 2025-03-27 1:48 UTC (permalink / raw)
To: igt-dev, riana.tauro, vinay.belgaumkar, kamil.konieczny
Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, soham.purkait
Add support for runtime power management
for Xe driver.
Soham Purkait (2):
lib/igt_device_scan: Add driver field to igt_device_card struct
tools/intel_pm_rpm: Add support for xe in runtime pm
lib/igt_device_scan.c | 4 ++++
lib/igt_device_scan.h | 1 +
tools/intel_pm_rpm.c | 28 ++++++++++++++++------------
3 files changed, 21 insertions(+), 12 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 11+ messages in thread* [PATCH 'i-g-t' v2 1/2] lib/igt_device_scan: Add driver field to igt_device_card struct 2025-03-27 1:48 [PATCH 'i-g-t' v2 0/2] Add support for Xe in runtime-pm Soham Purkait @ 2025-03-27 1:48 ` Soham Purkait 2025-03-27 17:07 ` Kamil Konieczny 2025-03-28 8:35 ` Zbigniew Kempczyński 2025-03-27 1:48 ` [PATCH 'i-g-t' v2 2/2] tools/intel_pm_rpm: Add support for xe in runtime pm Soham Purkait ` (4 subsequent siblings) 5 siblings, 2 replies; 11+ messages in thread From: Soham Purkait @ 2025-03-27 1:48 UTC (permalink / raw) To: igt-dev, riana.tauro, vinay.belgaumkar, kamil.konieczny Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, soham.purkait Add driver field to igt_device_card structure for storing driver names. v1 : Add driver field to igt_device_card struct v2 : Reorder commit sequence (Riana) Include sign-off Signed-off-by: Soham Purkait <soham.purkait@intel.com> --- lib/igt_device_scan.c | 4 ++++ lib/igt_device_scan.h | 1 + 2 files changed, 5 insertions(+) diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c index 711bedc5c..3f26a1737 100644 --- a/lib/igt_device_scan.c +++ b/lib/igt_device_scan.c @@ -774,6 +774,10 @@ __copy_dev_to_card(struct igt_device *dev, struct igt_device_card *card) safe_strncpy(card->render, dev->drm_render, sizeof(card->render)); + if (dev->driver != NULL) + safe_strncpy(card->driver, dev->driver, + sizeof(card->driver)); + if (dev->pci_slot_name != NULL) safe_strncpy(card->pci_slot_name, dev->pci_slot_name, sizeof(card->pci_slot_name)); diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h index 92741fe3c..f1cd3b1e9 100644 --- a/lib/igt_device_scan.h +++ b/lib/igt_device_scan.h @@ -59,6 +59,7 @@ struct igt_device_card { char subsystem[NAME_MAX]; char card[NAME_MAX]; char render[NAME_MAX]; + char driver[NAME_MAX]; char pci_slot_name[PCI_SLOT_NAME_SIZE+1]; uint16_t pci_vendor, pci_device; }; -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 'i-g-t' v2 1/2] lib/igt_device_scan: Add driver field to igt_device_card struct 2025-03-27 1:48 ` [PATCH 'i-g-t' v2 1/2] lib/igt_device_scan: Add driver field to igt_device_card struct Soham Purkait @ 2025-03-27 17:07 ` Kamil Konieczny 2025-03-28 8:35 ` Zbigniew Kempczyński 1 sibling, 0 replies; 11+ messages in thread From: Kamil Konieczny @ 2025-03-27 17:07 UTC (permalink / raw) To: Soham Purkait Cc: igt-dev, riana.tauro, vinay.belgaumkar, kamil.konieczny, anshuman.gupta, lucas.demarchi, rodrigo.vivi Hi Soham, On 2025-03-27 at 07:18:26 +0530, Soham Purkait wrote: > Add driver field to igt_device_card structure > for storing driver names. > > v1 : Add driver field to igt_device_card struct > > v2 : Reorder commit sequence (Riana) > Include sign-off > > Signed-off-by: Soham Purkait <soham.purkait@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > lib/igt_device_scan.c | 4 ++++ > lib/igt_device_scan.h | 1 + > 2 files changed, 5 insertions(+) > > diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c > index 711bedc5c..3f26a1737 100644 > --- a/lib/igt_device_scan.c > +++ b/lib/igt_device_scan.c > @@ -774,6 +774,10 @@ __copy_dev_to_card(struct igt_device *dev, struct igt_device_card *card) > safe_strncpy(card->render, dev->drm_render, > sizeof(card->render)); > > + if (dev->driver != NULL) > + safe_strncpy(card->driver, dev->driver, > + sizeof(card->driver)); > + > if (dev->pci_slot_name != NULL) > safe_strncpy(card->pci_slot_name, dev->pci_slot_name, > sizeof(card->pci_slot_name)); > diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h > index 92741fe3c..f1cd3b1e9 100644 > --- a/lib/igt_device_scan.h > +++ b/lib/igt_device_scan.h > @@ -59,6 +59,7 @@ struct igt_device_card { > char subsystem[NAME_MAX]; > char card[NAME_MAX]; > char render[NAME_MAX]; > + char driver[NAME_MAX]; > char pci_slot_name[PCI_SLOT_NAME_SIZE+1]; > uint16_t pci_vendor, pci_device; > }; > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 'i-g-t' v2 1/2] lib/igt_device_scan: Add driver field to igt_device_card struct 2025-03-27 1:48 ` [PATCH 'i-g-t' v2 1/2] lib/igt_device_scan: Add driver field to igt_device_card struct Soham Purkait 2025-03-27 17:07 ` Kamil Konieczny @ 2025-03-28 8:35 ` Zbigniew Kempczyński 1 sibling, 0 replies; 11+ messages in thread From: Zbigniew Kempczyński @ 2025-03-28 8:35 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev, kamil.konieczny On Thu, Mar 27, 2025 at 07:18:26AM +0530, Soham Purkait wrote: > Add driver field to igt_device_card structure > for storing driver names. > > v1 : Add driver field to igt_device_card struct > > v2 : Reorder commit sequence (Riana) > Include sign-off > > Signed-off-by: Soham Purkait <soham.purkait@intel.com> > --- > lib/igt_device_scan.c | 4 ++++ > lib/igt_device_scan.h | 1 + > 2 files changed, 5 insertions(+) > > diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c > index 711bedc5c..3f26a1737 100644 > --- a/lib/igt_device_scan.c > +++ b/lib/igt_device_scan.c > @@ -774,6 +774,10 @@ __copy_dev_to_card(struct igt_device *dev, struct igt_device_card *card) > safe_strncpy(card->render, dev->drm_render, > sizeof(card->render)); > > + if (dev->driver != NULL) > + safe_strncpy(card->driver, dev->driver, > + sizeof(card->driver)); > + > if (dev->pci_slot_name != NULL) > safe_strncpy(card->pci_slot_name, dev->pci_slot_name, > sizeof(card->pci_slot_name)); > diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h > index 92741fe3c..f1cd3b1e9 100644 > --- a/lib/igt_device_scan.h > +++ b/lib/igt_device_scan.h > @@ -59,6 +59,7 @@ struct igt_device_card { > char subsystem[NAME_MAX]; > char card[NAME_MAX]; > char render[NAME_MAX]; > + char driver[NAME_MAX]; > char pci_slot_name[PCI_SLOT_NAME_SIZE+1]; > uint16_t pci_vendor, pci_device; > }; > -- > 2.34.1 > This code is also part of your device filter patch, it would be good to merge this and get rid of there. -- Zbigniew ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 'i-g-t' v2 2/2] tools/intel_pm_rpm: Add support for xe in runtime pm 2025-03-27 1:48 [PATCH 'i-g-t' v2 0/2] Add support for Xe in runtime-pm Soham Purkait 2025-03-27 1:48 ` [PATCH 'i-g-t' v2 1/2] lib/igt_device_scan: Add driver field to igt_device_card struct Soham Purkait @ 2025-03-27 1:48 ` Soham Purkait 2025-03-27 14:07 ` Riana Tauro 2025-03-27 2:21 ` ✓ Xe.CI.BAT: success for Add support for Xe in runtime-pm (rev3) Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Soham Purkait @ 2025-03-27 1:48 UTC (permalink / raw) To: igt-dev, riana.tauro, vinay.belgaumkar, kamil.konieczny Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, soham.purkait Add support for runtime power management for Xe driver along with existing i915 support. v1 : Updated references from "i915" to "generic GPU driver" to include support for the xe driver, ensuring clarity and consistency v2 : Add prefix in commit message (Kamil) Signed-off-by: Soham Purkait <soham.purkait@intel.com> --- tools/intel_pm_rpm.c | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/tools/intel_pm_rpm.c b/tools/intel_pm_rpm.c index 08c25ca8a..8c4778e4f 100644 --- a/tools/intel_pm_rpm.c +++ b/tools/intel_pm_rpm.c @@ -35,7 +35,7 @@ #include "igt_pm.h" #define DONT_SET_AUTOSUSPEND_DELAY (1 << 0) -#define SET_I915_AUTOSUSPEND_DELAY (1 << 1) +#define SET_AUTOSUSPEND_DELAY (1 << 1) typedef struct { int drm_fd; @@ -47,8 +47,8 @@ typedef struct { const char *help_str = " --disable-display-wait\t\tDisable all screens and try to go into runtime pm.\n" " --force-d3cold-wait\t\tForce dgfx gfx card to enter runtime D3Cold.\n" - " --setup-d3cold\t\tEnable gfx card runtime pm and optionally set autosupend delay to" - " i915 autosuspend delay. Use --setup-d3cold=i915-auto-delay as optional argument.\n" + " --setup-d3cold\t\tEnable gfx card runtime pm and optionally set GPU driver's" + " autosuspend delay. Use --setup-d3cold=auto-delay as optional argument.\n" " --help\t\tProvide help. Provide card name with IGT_DEVICE=drm:/dev/dri/card*."; static struct option long_options[] = { {"disable-display-wait", 0, 0, 'd'}, @@ -80,14 +80,14 @@ static void disable_all_displays(data_t *data) static void setup_gfx_card_d3cold(data_t *data, unsigned char setup_d3cold) { - struct pci_device *root, *i915; + struct pci_device *root, *gpu_device; root = igt_device_get_pci_root_port(data->drm_fd); if (setup_d3cold == DONT_SET_AUTOSUSPEND_DELAY) { igt_pm_enable_pci_card_runtime_pm(root, NULL); - } else if (setup_d3cold == SET_I915_AUTOSUSPEND_DELAY) { - i915 = igt_device_get_pci_device(data->drm_fd); - igt_pm_enable_pci_card_runtime_pm(root, i915); + } else if (setup_d3cold == SET_AUTOSUSPEND_DELAY) { + gpu_device = igt_device_get_pci_device(data->drm_fd); + igt_pm_enable_pci_card_runtime_pm(root, gpu_device); } igt_info("Enabled pci devs runtime pm under Root port %04x:%02x:%02x.%01x\n", @@ -151,7 +151,8 @@ int main(int argc, char *argv[]) goto exit; } } else { - if (!igt_device_find_first_i915_discrete_card(&card)) { + if (!igt_device_find_first_i915_discrete_card(&card) && + !igt_device_find_first_xe_discrete_card(&card)) { igt_warn("No discrete gpu found\n"); ret = EXIT_FAILURE; goto exit; @@ -169,8 +170,8 @@ int main(int argc, char *argv[]) break; case 's': if (optarg) { - if (!strcmp(optarg, "i915-auto-delay")) { - setup_d3cold = SET_I915_AUTOSUSPEND_DELAY; + if (!strcmp(optarg, "auto-delay")) { + setup_d3cold = SET_AUTOSUSPEND_DELAY; } else { usage(argv[0]); ret = EXIT_SUCCESS; @@ -203,7 +204,7 @@ int main(int argc, char *argv[]) kmstest_set_vt_graphics_mode(); igt_display_require(&data.display, data.drm_fd); - /* i915 disables RPM in case DMC is not loaded on kms supported cards */ + /* GPU driver disables RPM in case DMC is not loaded on kms supported cards */ if (!igt_pm_dmc_loaded(data.debugfs_fd)) { igt_warn("dmc fw is not loaded, no runtime pm\n"); ret = EXIT_FAILURE; @@ -215,7 +216,10 @@ int main(int argc, char *argv[]) igt_setup_runtime_pm(data.drm_fd); disable_all_displays(&data); if (!igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)) { - __igt_debugfs_dump(data.drm_fd, "i915_runtime_pm_status", IGT_LOG_INFO); + if (!strcmp("i915", card.driver)) + __igt_debugfs_dump(data.drm_fd, + "i915_runtime_pm_status", + IGT_LOG_INFO); ret = EXIT_FAILURE; goto exit; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 'i-g-t' v2 2/2] tools/intel_pm_rpm: Add support for xe in runtime pm 2025-03-27 1:48 ` [PATCH 'i-g-t' v2 2/2] tools/intel_pm_rpm: Add support for xe in runtime pm Soham Purkait @ 2025-03-27 14:07 ` Riana Tauro 2025-03-27 17:06 ` Kamil Konieczny 0 siblings, 1 reply; 11+ messages in thread From: Riana Tauro @ 2025-03-27 14:07 UTC (permalink / raw) To: Soham Purkait, igt-dev, vinay.belgaumkar, kamil.konieczny Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi Hi Soham Use this while generating patch for igt git format-patch --subject-prefix="i-g-t" Replace [PATCH 'i-g-t' ...] with [PATCH i-g-t ...] On 3/27/2025 7:18 AM, Soham Purkait wrote: > Add support for runtime power management > for Xe driver along with existing i915 > support. > > v1 : Updated references from "i915" to > "generic GPU driver" to include support > for the xe driver, ensuring clarity and > consistency > > v2 : Add prefix in commit message (Kamil) > > Signed-off-by: Soham Purkait <soham.purkait@intel.com> > --- > tools/intel_pm_rpm.c | 28 ++++++++++++++++------------ > 1 file changed, 16 insertions(+), 12 deletions(-) > > diff --git a/tools/intel_pm_rpm.c b/tools/intel_pm_rpm.c > index 08c25ca8a..8c4778e4f 100644 > --- a/tools/intel_pm_rpm.c > +++ b/tools/intel_pm_rpm.c > @@ -35,7 +35,7 @@ > #include "igt_pm.h" > > #define DONT_SET_AUTOSUSPEND_DELAY (1 << 0) > -#define SET_I915_AUTOSUSPEND_DELAY (1 << 1) > +#define SET_AUTOSUSPEND_DELAY (1 << 1) > > typedef struct { > int drm_fd; > @@ -47,8 +47,8 @@ typedef struct { > const char *help_str = > " --disable-display-wait\t\tDisable all screens and try to go into runtime pm.\n" > " --force-d3cold-wait\t\tForce dgfx gfx card to enter runtime D3Cold.\n" > - " --setup-d3cold\t\tEnable gfx card runtime pm and optionally set autosupend delay to" > - " i915 autosuspend delay. Use --setup-d3cold=i915-auto-delay as optional argument.\n" > + " --setup-d3cold\t\tEnable gfx card runtime pm and optionally set GPU driver's" > + " autosuspend delay. Use --setup-d3cold=auto-delay as optional argument.\n" > " --help\t\tProvide help. Provide card name with IGT_DEVICE=drm:/dev/dri/card*."; > static struct option long_options[] = { > {"disable-display-wait", 0, 0, 'd'}, > @@ -80,14 +80,14 @@ static void disable_all_displays(data_t *data) > static void > setup_gfx_card_d3cold(data_t *data, unsigned char setup_d3cold) > { > - struct pci_device *root, *i915; > + struct pci_device *root, *gpu_device; > > root = igt_device_get_pci_root_port(data->drm_fd); > if (setup_d3cold == DONT_SET_AUTOSUSPEND_DELAY) { > igt_pm_enable_pci_card_runtime_pm(root, NULL); > - } else if (setup_d3cold == SET_I915_AUTOSUSPEND_DELAY) { > - i915 = igt_device_get_pci_device(data->drm_fd); > - igt_pm_enable_pci_card_runtime_pm(root, i915); > + } else if (setup_d3cold == SET_AUTOSUSPEND_DELAY) { > + gpu_device = igt_device_get_pci_device(data->drm_fd); > + igt_pm_enable_pci_card_runtime_pm(root, gpu_device); > } > > igt_info("Enabled pci devs runtime pm under Root port %04x:%02x:%02x.%01x\n", > @@ -151,7 +151,8 @@ int main(int argc, char *argv[]) > goto exit; > } > } else { > - if (!igt_device_find_first_i915_discrete_card(&card)) { > + if (!igt_device_find_first_i915_discrete_card(&card) && > + !igt_device_find_first_xe_discrete_card(&card)) { > igt_warn("No discrete gpu found\n"); > ret = EXIT_FAILURE; > goto exit; > @@ -169,8 +170,8 @@ int main(int argc, char *argv[]) > break; > case 's': > if (optarg) { > - if (!strcmp(optarg, "i915-auto-delay")) { > - setup_d3cold = SET_I915_AUTOSUSPEND_DELAY; > + if (!strcmp(optarg, "auto-delay")) { > + setup_d3cold = SET_AUTOSUSPEND_DELAY; > } else { > usage(argv[0]); > ret = EXIT_SUCCESS; > @@ -203,7 +204,7 @@ int main(int argc, char *argv[]) > kmstest_set_vt_graphics_mode(); > igt_display_require(&data.display, data.drm_fd); > > - /* i915 disables RPM in case DMC is not loaded on kms supported cards */ > + /* GPU driver disables RPM in case DMC is not loaded on kms supported cards */ > if (!igt_pm_dmc_loaded(data.debugfs_fd)) { > igt_warn("dmc fw is not loaded, no runtime pm\n"); > ret = EXIT_FAILURE; > @@ -215,7 +216,10 @@ int main(int argc, char *argv[]) > igt_setup_runtime_pm(data.drm_fd); > disable_all_displays(&data); > if (!igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)) { > - __igt_debugfs_dump(data.drm_fd, "i915_runtime_pm_status", IGT_LOG_INFO); Add a error or warn statement for xe or else it'll just quit Is this tested for xe since CI doesn't run tools? Thanks Riana> + if (!strcmp("i915", card.driver)) > + __igt_debugfs_dump(data.drm_fd, > + "i915_runtime_pm_status", > + IGT_LOG_INFO); > ret = EXIT_FAILURE; > goto exit; > } ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 'i-g-t' v2 2/2] tools/intel_pm_rpm: Add support for xe in runtime pm 2025-03-27 14:07 ` Riana Tauro @ 2025-03-27 17:06 ` Kamil Konieczny 0 siblings, 0 replies; 11+ messages in thread From: Kamil Konieczny @ 2025-03-27 17:06 UTC (permalink / raw) To: Riana Tauro Cc: Soham Purkait, igt-dev, vinay.belgaumkar, kamil.konieczny, anshuman.gupta, lucas.demarchi, rodrigo.vivi Hi Riana, On 2025-03-27 at 19:37:55 +0530, Riana Tauro wrote: > Hi Soham > > Use this while generating patch for igt > git format-patch --subject-prefix="i-g-t" > > Replace [PATCH 'i-g-t' ...] with [PATCH i-g-t ...] Or follow CONTRIBUTING.md and in your igt repo do: git config format.subjectprefix "PATCH i-g-t" Regards, Kamil > > On 3/27/2025 7:18 AM, Soham Purkait wrote: > > Add support for runtime power management > > for Xe driver along with existing i915 > > support. > > > > v1 : Updated references from "i915" to > > "generic GPU driver" to include support > > for the xe driver, ensuring clarity and > > consistency > > > > v2 : Add prefix in commit message (Kamil) > > > > Signed-off-by: Soham Purkait <soham.purkait@intel.com> > > --- > > tools/intel_pm_rpm.c | 28 ++++++++++++++++------------ > > 1 file changed, 16 insertions(+), 12 deletions(-) > > > > diff --git a/tools/intel_pm_rpm.c b/tools/intel_pm_rpm.c > > index 08c25ca8a..8c4778e4f 100644 > > --- a/tools/intel_pm_rpm.c > > +++ b/tools/intel_pm_rpm.c > > @@ -35,7 +35,7 @@ > > #include "igt_pm.h" > > #define DONT_SET_AUTOSUSPEND_DELAY (1 << 0) > > -#define SET_I915_AUTOSUSPEND_DELAY (1 << 1) > > +#define SET_AUTOSUSPEND_DELAY (1 << 1) > > typedef struct { > > int drm_fd; > > @@ -47,8 +47,8 @@ typedef struct { > > const char *help_str = > > " --disable-display-wait\t\tDisable all screens and try to go into runtime pm.\n" > > " --force-d3cold-wait\t\tForce dgfx gfx card to enter runtime D3Cold.\n" > > - " --setup-d3cold\t\tEnable gfx card runtime pm and optionally set autosupend delay to" > > - " i915 autosuspend delay. Use --setup-d3cold=i915-auto-delay as optional argument.\n" > > + " --setup-d3cold\t\tEnable gfx card runtime pm and optionally set GPU driver's" > > + " autosuspend delay. Use --setup-d3cold=auto-delay as optional argument.\n" > > " --help\t\tProvide help. Provide card name with IGT_DEVICE=drm:/dev/dri/card*."; > > static struct option long_options[] = { > > {"disable-display-wait", 0, 0, 'd'}, > > @@ -80,14 +80,14 @@ static void disable_all_displays(data_t *data) > > static void > > setup_gfx_card_d3cold(data_t *data, unsigned char setup_d3cold) > > { > > - struct pci_device *root, *i915; > > + struct pci_device *root, *gpu_device; > > root = igt_device_get_pci_root_port(data->drm_fd); > > if (setup_d3cold == DONT_SET_AUTOSUSPEND_DELAY) { > > igt_pm_enable_pci_card_runtime_pm(root, NULL); > > - } else if (setup_d3cold == SET_I915_AUTOSUSPEND_DELAY) { > > - i915 = igt_device_get_pci_device(data->drm_fd); > > - igt_pm_enable_pci_card_runtime_pm(root, i915); > > + } else if (setup_d3cold == SET_AUTOSUSPEND_DELAY) { > > + gpu_device = igt_device_get_pci_device(data->drm_fd); > > + igt_pm_enable_pci_card_runtime_pm(root, gpu_device); > > } > > igt_info("Enabled pci devs runtime pm under Root port %04x:%02x:%02x.%01x\n", > > @@ -151,7 +151,8 @@ int main(int argc, char *argv[]) > > goto exit; > > } > > } else { > > - if (!igt_device_find_first_i915_discrete_card(&card)) { > > + if (!igt_device_find_first_i915_discrete_card(&card) && > > + !igt_device_find_first_xe_discrete_card(&card)) { > > igt_warn("No discrete gpu found\n"); > > ret = EXIT_FAILURE; > > goto exit; > > @@ -169,8 +170,8 @@ int main(int argc, char *argv[]) > > break; > > case 's': > > if (optarg) { > > - if (!strcmp(optarg, "i915-auto-delay")) { > > - setup_d3cold = SET_I915_AUTOSUSPEND_DELAY; > > + if (!strcmp(optarg, "auto-delay")) { > > + setup_d3cold = SET_AUTOSUSPEND_DELAY; > > } else { > > usage(argv[0]); > > ret = EXIT_SUCCESS; > > @@ -203,7 +204,7 @@ int main(int argc, char *argv[]) > > kmstest_set_vt_graphics_mode(); > > igt_display_require(&data.display, data.drm_fd); > > - /* i915 disables RPM in case DMC is not loaded on kms supported cards */ > > + /* GPU driver disables RPM in case DMC is not loaded on kms supported cards */ > > if (!igt_pm_dmc_loaded(data.debugfs_fd)) { > > igt_warn("dmc fw is not loaded, no runtime pm\n"); > > ret = EXIT_FAILURE; > > @@ -215,7 +216,10 @@ int main(int argc, char *argv[]) > > igt_setup_runtime_pm(data.drm_fd); > > disable_all_displays(&data); > > if (!igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)) { > > - __igt_debugfs_dump(data.drm_fd, "i915_runtime_pm_status", IGT_LOG_INFO); > Add a error or warn statement for xe or else it'll just quit > > Is this tested for xe since CI doesn't run tools? > > Thanks > Riana> + if (!strcmp("i915", card.driver)) > > + __igt_debugfs_dump(data.drm_fd, > > + "i915_runtime_pm_status", > > + IGT_LOG_INFO); > > ret = EXIT_FAILURE; > > goto exit; > > } > ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for Add support for Xe in runtime-pm (rev3) 2025-03-27 1:48 [PATCH 'i-g-t' v2 0/2] Add support for Xe in runtime-pm Soham Purkait 2025-03-27 1:48 ` [PATCH 'i-g-t' v2 1/2] lib/igt_device_scan: Add driver field to igt_device_card struct Soham Purkait 2025-03-27 1:48 ` [PATCH 'i-g-t' v2 2/2] tools/intel_pm_rpm: Add support for xe in runtime pm Soham Purkait @ 2025-03-27 2:21 ` Patchwork 2025-03-27 3:31 ` ✗ i915.CI.BAT: failure " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-03-27 2:21 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2125 bytes --] == Series Details == Series: Add support for Xe in runtime-pm (rev3) URL : https://patchwork.freedesktop.org/series/146379/ State : success == Summary == CI Bug Log - changes from XEIGT_8288_BAT -> XEIGTPW_12849_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between XEIGT_8288_BAT and XEIGTPW_12849_BAT: ### New IGT tests (4) ### * igt@xe_exec_atomic@basic-dec-all@engine-drm_xe_engine_class_video_decode-instance-0-tile-1-system-memory: - Statuses : 2 pass(s) - Exec time: [0.00] s * igt@xe_exec_atomic@basic-dec-all@engine-drm_xe_engine_class_video_enhance-instance-0-tile-1-system-memory: - Statuses : 2 pass(s) - Exec time: [0.00] s * igt@xe_exec_atomic@basic-inc-all@engine-drm_xe_engine_class_video_decode-instance-0-tile-1-system-memory: - Statuses : 2 pass(s) - Exec time: [0.00, 0.01] s * igt@xe_exec_atomic@basic-inc-all@engine-drm_xe_engine_class_video_enhance-instance-0-tile-1-system-memory: - Statuses : 2 pass(s) - Exec time: [0.00, 0.01] s Known issues ------------ Here are the changes found in XEIGTPW_12849_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [PASS][1] -> [ABORT][2] ([Intel XE#3970]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 Build changes ------------- * IGT: IGT_8288 -> IGTPW_12849 IGTPW_12849: 12849 IGT_8288: 8288 xe-2854-14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8: 14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/index.html [-- Attachment #2: Type: text/html, Size: 2816 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.BAT: failure for Add support for Xe in runtime-pm (rev3) 2025-03-27 1:48 [PATCH 'i-g-t' v2 0/2] Add support for Xe in runtime-pm Soham Purkait ` (2 preceding siblings ...) 2025-03-27 2:21 ` ✓ Xe.CI.BAT: success for Add support for Xe in runtime-pm (rev3) Patchwork @ 2025-03-27 3:31 ` Patchwork 2025-03-27 14:26 ` ✗ Xe.CI.Full: " Patchwork 2025-04-06 13:33 ` Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-03-27 3:31 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3071 bytes --] == Series Details == Series: Add support for Xe in runtime-pm (rev3) URL : https://patchwork.freedesktop.org/series/146379/ State : failure == Summary == CI Bug Log - changes from IGT_8288 -> IGTPW_12849 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12849 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12849, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12849/index.html Participating hosts (42 -> 41) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12849: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live: - bat-rplp-1: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8288/bat-rplp-1/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12849/bat-rplp-1/igt@i915_selftest@live.html Known issues ------------ Here are the changes found in IGTPW_12849 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-n3050: [INCOMPLETE][3] ([i915#12904]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8288/fi-bsw-n3050/igt@dmabuf@all-tests@dma_fence_chain.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12849/fi-bsw-n3050/igt@dmabuf@all-tests@dma_fence_chain.html * igt@i915_module_load@load: - bat-mtlp-9: [DMESG-WARN][5] ([i915#13494]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8288/bat-mtlp-9/igt@i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12849/bat-mtlp-9/igt@i915_module_load@load.html * igt@i915_selftest@live@late_gt_pm: - fi-cfl-8109u: [DMESG-WARN][7] ([i915#13735]) -> [PASS][8] +132 other tests pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8288/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12849/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8288 -> IGTPW_12849 CI-20190529: 20190529 CI_DRM_16321: 14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12849: 12849 IGT_8288: 8288 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12849/index.html [-- Attachment #2: Type: text/html, Size: 3763 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for Add support for Xe in runtime-pm (rev3) 2025-03-27 1:48 [PATCH 'i-g-t' v2 0/2] Add support for Xe in runtime-pm Soham Purkait ` (3 preceding siblings ...) 2025-03-27 3:31 ` ✗ i915.CI.BAT: failure " Patchwork @ 2025-03-27 14:26 ` Patchwork 2025-04-06 13:33 ` Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-03-27 14:26 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 332 bytes --] == Series Details == Series: Add support for Xe in runtime-pm (rev3) URL : https://patchwork.freedesktop.org/series/146379/ State : failure == Summary == ERROR: The runconfig 'XEIGTPW_12849_FULL' does not exist in the database == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/index.html [-- Attachment #2: Type: text/html, Size: 894 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for Add support for Xe in runtime-pm (rev3) 2025-03-27 1:48 [PATCH 'i-g-t' v2 0/2] Add support for Xe in runtime-pm Soham Purkait ` (4 preceding siblings ...) 2025-03-27 14:26 ` ✗ Xe.CI.Full: " Patchwork @ 2025-04-06 13:33 ` Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-04-06 13:33 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 78005 bytes --] == Series Details == Series: Add support for Xe in runtime-pm (rev3) URL : https://patchwork.freedesktop.org/series/146379/ State : failure == Summary == CI Bug Log - changes from XEIGT_8288_FULL -> XEIGTPW_12849_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12849_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12849_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12849_FULL: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-433/igt@core_hotunplug@hotreplug-lateclose.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-lnl: [PASS][2] -> [ABORT][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-6/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-8/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_pm_residency@idle-residency-on-exec: - shard-lnl: [PASS][4] -> [INCOMPLETE][5] +3 other tests incomplete [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-2/igt@xe_pm_residency@idle-residency-on-exec.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-5/igt@xe_pm_residency@idle-residency-on-exec.html Known issues ------------ Here are the changes found in XEIGTPW_12849_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [PASS][6] -> [FAIL][7] ([Intel XE#911]) +3 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#2550] / [Intel XE#3767]) +15 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-434/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#873]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-433/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2327]) +4 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-1/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +12 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +5 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-466/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2191]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#367]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +13 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +40 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#3432]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#3432]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#787]) +179 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2669]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2907]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2652] / [Intel XE#787]) +21 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#4416]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-463/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2325]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@degamma: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#306]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_color@gamma: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#306]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-7/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#373]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-6/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#373]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2252]) +9 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_content_protection@atomic@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][38] ([Intel XE#1178]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@kms_content_protection@atomic@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2390]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#307]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#1178]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_content_protection@uevent: - shard-bmg: NOTRUN -> [FAIL][42] ([Intel XE#1188]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-7/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#1188]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-433/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#308]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2320]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2321]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#309]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#323]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2-set2: [PASS][50] -> [SKIP][51] ([Intel XE#309]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-463/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2291]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@forked-move: - shard-lnl: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#3226]) +1 other test incomplete [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-6/igt@kms_cursor_legacy@forked-move.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-7/igt@kms_cursor_legacy@forked-move.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2286]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1508]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#4494]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1340]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#4331]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2244]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#455]) +15 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-436/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#4422]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-436/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4422]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#4422]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: [PASS][66] -> [FAIL][67] ([Intel XE#3321]) +4 other tests fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1421]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2-set2: [PASS][69] -> [SKIP][70] ([Intel XE#310]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-435/igt@kms_flip@2x-modeset-vs-vblank-race.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#310]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2316]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#2316]) +8 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp2: - shard-bmg: NOTRUN -> [FAIL][75] ([Intel XE#3321]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp2.html * igt@kms_flip@plain-flip-fb-recreate@a-edp1: - shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#886]) +1 other test fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1401] / [Intel XE#1745]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1401]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2293]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2311]) +23 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [PASS][83] -> [SKIP][84] ([Intel XE#656]) +6 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#4141]) +14 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#651]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#651]) +12 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2312]) +10 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2313]) +29 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#4439]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#656]) +5 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#656]) +8 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#653]) +15 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][94] -> [SKIP][95] ([Intel XE#1503]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-2/igt@kms_hdr@invalid-hdr.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][96] -> [SKIP][97] ([Intel XE#3012]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#4329]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][99] -> [FAIL][100] ([Intel XE#616]) +1 other test fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-434/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-463/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_multiple@2x-tiling-none: - shard-dg2-set2: [PASS][101] -> [SKIP][102] ([Intel XE#4596]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-435/igt@kms_plane_multiple@2x-tiling-none.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][103] ([Intel XE#4212]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [ABORT][104] ([Intel XE#4540]) +1 other test abort [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +14 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#870]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-4/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2391]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][108] -> [FAIL][109] ([Intel XE#718]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2505]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@kms_pm_dc@deep-pkgc.html - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#908]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-436/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1489]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-463/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#1489]) +7 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#2893]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1406]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-7/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr2-basic@edp-1: - shard-lnl: NOTRUN -> [FAIL][116] ([Intel XE#4568]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-8/igt@kms_psr@fbc-psr2-basic@edp-1.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-466/igt@kms_psr@fbc-psr2-dpms.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2414]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2939]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-463/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#3414] / [Intel XE#3904]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-4/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#1435]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2426]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: [PASS][124] -> [FAIL][125] ([Intel XE#771]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vblank@ts-continuation-suspend: - shard-lnl: [PASS][126] -> [INCOMPLETE][127] ([Intel XE#4207]) +1 other test incomplete [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-5/igt@kms_vblank@ts-continuation-suspend.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-4/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@max-min: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1499]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-7/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1499]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#756]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#756]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-435/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2905] / [Intel XE#3889]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-4/igt@xe_eudebug@basic-vm-access-parameters-userptr.html * igt@xe_eudebug@discovery-race-sigint: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2905] / [Intel XE#4259]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@xe_eudebug@discovery-race-sigint.html * igt@xe_eudebug@read-metadata: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2905]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@xe_eudebug@read-metadata.html * igt@xe_eudebug_online@resume-dss: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2905]) +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-435/igt@xe_eudebug_online@resume-dss.html * igt@xe_eudebug_online@set-breakpoint-sigint-debugger: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#4577]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#4577]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-4/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html * igt@xe_eudebug_sriov@deny-eudebug: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#4518]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-7/igt@xe_eudebug_sriov@deny-eudebug.html * igt@xe_eudebug_sriov@deny-sriov: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#4518]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-463/igt@xe_eudebug_sriov@deny-sriov.html * igt@xe_evict@evict-beng-large-external-cm: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#688]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-3/igt@xe_evict@evict-beng-large-external-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2322]) +8 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-dg2-set2: [PASS][142] -> [SKIP][143] ([Intel XE#1392]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1392]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#288]) +16 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt@xe_fault_injection@oa-add-config-fail-xe_oa_alloc_regs: - shard-bmg: NOTRUN -> [FAIL][146] ([Intel XE#3903]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@xe_fault_injection@oa-add-config-fail-xe_oa_alloc_regs.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#255]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: [PASS][148] -> [FAIL][149] ([Intel XE#1999]) +2 other tests fail [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-432/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-466/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2459] / [Intel XE#2596]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@xe_media_fill@media-fill.html * igt@xe_module_load@load: - shard-lnl: ([PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175]) -> ([PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [SKIP][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198]) ([Intel XE#378]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-5/igt@xe_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-7/igt@xe_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-6/igt@xe_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-4/igt@xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-4/igt@xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-1/igt@xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-5/igt@xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-3/igt@xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-8/igt@xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-3/igt@xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-1/igt@xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-3/igt@xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-6/igt@xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-8/igt@xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-2/igt@xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-8/igt@xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-7/igt@xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-2/igt@xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-4/igt@xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-7/igt@xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-3/igt@xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-5/igt@xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-6/igt@xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-2/igt@xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-1/igt@xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-8/igt@xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-1/igt@xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-1/igt@xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-1/igt@xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-5/igt@xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-6/igt@xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-6/igt@xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-7/igt@xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-7/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-5/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-4/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-5/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-3/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-8/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-4/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-3/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-8/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-2/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-1/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-4/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-7/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-7/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-3/igt@xe_module_load@load.html - shard-bmg: ([PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218]) -> ([PASS][219], [PASS][220], [PASS][221], [SKIP][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240]) ([Intel XE#2457]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-4/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-4/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-2/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-3/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-3/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-2/igt@xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-2/igt@xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-6/igt@xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-6/igt@xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-6/igt@xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-3/igt@xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-7/igt@xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-7/igt@xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-8/igt@xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-4/igt@xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-1/igt@xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-7/igt@xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-8/igt@xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-2/igt@xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-8/igt@xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-3/igt@xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-3/igt@xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-3/igt@xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-3/igt@xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-4/igt@xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-4/igt@xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-4/igt@xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-7/igt@xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-7/igt@xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-7/igt@xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@xe_module_load@load.html * igt@xe_oa@buffer-size: - shard-lnl: [PASS][241] -> [FAIL][242] ([Intel XE#4541]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-3/igt@xe_oa@buffer-size.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-8/igt@xe_oa@buffer-size.html - shard-bmg: [PASS][243] -> [FAIL][244] ([Intel XE#4541]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-2/igt@xe_oa@buffer-size.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@xe_oa@buffer-size.html * igt@xe_oa@buffer-size@ccs-0-256k: - shard-lnl: NOTRUN -> [FAIL][245] ([Intel XE#4541]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-8/igt@xe_oa@buffer-size@ccs-0-256k.html * igt@xe_oa@buffer-size@rcs-0-128k: - shard-bmg: NOTRUN -> [FAIL][246] ([Intel XE#4541]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@xe_oa@buffer-size@rcs-0-128k.html * igt@xe_oa@privileged-forked-access-vaddr: - shard-dg2-set2: NOTRUN -> [SKIP][247] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-436/igt@xe_oa@privileged-forked-access-vaddr.html * igt@xe_oa@syncs-syncobj-wait: - shard-dg2-set2: NOTRUN -> [SKIP][248] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-433/igt@xe_oa@syncs-syncobj-wait.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][249] ([Intel XE#2284]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-435/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][250] ([Intel XE#2284]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@xe_pm@s3-d3cold-basic-exec.html - shard-dg2-set2: NOTRUN -> [SKIP][251] ([Intel XE#2284] / [Intel XE#366]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-lnl: NOTRUN -> [SKIP][252] ([Intel XE#584]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-8/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_query@multigpu-query-cs-cycles: - shard-lnl: NOTRUN -> [SKIP][253] ([Intel XE#944]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-8/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-invalid-extension: - shard-bmg: NOTRUN -> [SKIP][254] ([Intel XE#944]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-4/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][255] ([Intel XE#944]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-lnl: NOTRUN -> [SKIP][256] ([Intel XE#4130]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-4/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: NOTRUN -> [SKIP][257] ([Intel XE#3342]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_scheduling@equal-throughput: - shard-bmg: NOTRUN -> [SKIP][258] ([Intel XE#4351]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-1/igt@xe_sriov_scheduling@equal-throughput.html #### Possible fixes #### * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][259] ([Intel XE#2191]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][261] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][263] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: [INCOMPLETE][265] ([Intel XE#4212] / [Intel XE#4345]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [SKIP][267] ([Intel XE#309]) -> [PASS][268] +3 other tests pass [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][269] ([Intel XE#2291]) -> [PASS][270] +1 other test pass [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][271] ([Intel XE#4302]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-3/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-dg2-set2: [SKIP][273] ([Intel XE#3009]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_dp_aux_dev.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-436/igt@kms_dp_aux_dev.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2-set2: [SKIP][275] ([Intel XE#310]) -> [PASS][276] +1 other test pass [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-463/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][277] ([Intel XE#3321]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][279] ([Intel XE#2316]) -> [PASS][280] +2 other tests pass [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][281] ([Intel XE#301]) -> [PASS][282] +1 other test pass [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][283] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-466/igt@kms_flip@flip-vs-suspend.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][285] ([Intel XE#656]) -> [PASS][286] +6 other tests pass [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][287] ([Intel XE#455]) -> [PASS][288] +3 other tests pass [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-433/igt@kms_hdr@invalid-hdr.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-463/igt@kms_hdr@invalid-hdr.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [FAIL][289] ([Intel XE#616]) -> [PASS][290] +1 other test pass [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_plane_cursor@viewport.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-466/igt@kms_plane_cursor@viewport.html * igt@kms_plane_multiple@2x-tiling-x: - shard-dg2-set2: [SKIP][291] ([Intel XE#4596]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-x.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: [SKIP][293] ([Intel XE#836]) -> [PASS][294] +1 other test pass [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-433/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][295] ([Intel XE#2883]) -> [PASS][296] +2 other tests pass [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: [SKIP][297] ([Intel XE#1392]) -> [PASS][298] +2 other tests pass [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-436/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html #### Warnings #### * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][299] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][300] ([Intel XE#787]) +7 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][301] ([Intel XE#787]) -> [SKIP][302] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][303] ([Intel XE#4440]) -> [SKIP][304] ([Intel XE#4418]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_content_protection@atomic: - shard-bmg: [SKIP][305] ([Intel XE#2341]) -> [FAIL][306] ([Intel XE#1178]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-6/igt@kms_content_protection@atomic.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@srm: - shard-dg2-set2: [SKIP][307] ([Intel XE#455]) -> [FAIL][308] ([Intel XE#1178]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_content_protection@srm.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2-set2: [SKIP][309] ([Intel XE#455]) -> [FAIL][310] ([Intel XE#1188]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_content_protection@uevent.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-433/igt@kms_content_protection@uevent.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][311] ([Intel XE#301]) -> [SKIP][312] ([Intel XE#310]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][313] ([Intel XE#656]) -> [SKIP][314] ([Intel XE#651]) +11 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][315] ([Intel XE#651]) -> [SKIP][316] ([Intel XE#656]) +5 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][317] ([Intel XE#2311]) -> [SKIP][318] ([Intel XE#2312]) +13 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][319] ([Intel XE#2312]) -> [SKIP][320] ([Intel XE#4141]) +6 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][321] ([Intel XE#4141]) -> [SKIP][322] ([Intel XE#2312]) +6 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][323] ([Intel XE#2312]) -> [SKIP][324] ([Intel XE#2311]) +14 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][325] ([Intel XE#2313]) -> [SKIP][326] ([Intel XE#2312]) +14 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][327] ([Intel XE#656]) -> [SKIP][328] ([Intel XE#653]) +8 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][329] ([Intel XE#2312]) -> [SKIP][330] ([Intel XE#2313]) +14 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html - shard-dg2-set2: [SKIP][331] ([Intel XE#653]) -> [SKIP][332] ([Intel XE#656]) +6 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: [SKIP][333] ([Intel XE#4596]) -> [SKIP][334] ([Intel XE#2493]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-y.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html - shard-dg2-set2: [SKIP][335] ([Intel XE#4596]) -> [SKIP][336] ([Intel XE#455]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-y.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-436/igt@kms_plane_multiple@2x-tiling-y.html * igt@testdisplay: - shard-dg2-set2: [ABORT][337] ([Intel XE#2705] / [Intel XE#4540]) -> [ABORT][338] ([Intel XE#4540]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8288/shard-dg2-464/igt@testdisplay.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/shard-dg2-432/igt@testdisplay.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3903]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3903 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4207]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4207 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416 [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4439 [Intel XE#4440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4440 [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494 [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501 [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518 [Intel XE#4540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4540 [Intel XE#4541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4541 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4568 [Intel XE#4577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4577 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8288 -> IGTPW_12849 IGTPW_12849: 12849 IGT_8288: 8288 xe-2854-14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8: 14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12849/index.html [-- Attachment #2: Type: text/html, Size: 90104 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-04-06 13:33 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-03-27 1:48 [PATCH 'i-g-t' v2 0/2] Add support for Xe in runtime-pm Soham Purkait 2025-03-27 1:48 ` [PATCH 'i-g-t' v2 1/2] lib/igt_device_scan: Add driver field to igt_device_card struct Soham Purkait 2025-03-27 17:07 ` Kamil Konieczny 2025-03-28 8:35 ` Zbigniew Kempczyński 2025-03-27 1:48 ` [PATCH 'i-g-t' v2 2/2] tools/intel_pm_rpm: Add support for xe in runtime pm Soham Purkait 2025-03-27 14:07 ` Riana Tauro 2025-03-27 17:06 ` Kamil Konieczny 2025-03-27 2:21 ` ✓ Xe.CI.BAT: success for Add support for Xe in runtime-pm (rev3) Patchwork 2025-03-27 3:31 ` ✗ i915.CI.BAT: failure " Patchwork 2025-03-27 14:26 ` ✗ Xe.CI.Full: " Patchwork 2025-04-06 13:33 ` Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox