* [Intel-gfx] [PATCH v2 0/3] Assorted fixes/tweaks to GuC support
@ 2021-12-07 20:19 John.C.Harrison
2021-12-07 20:19 ` [Intel-gfx] [PATCH v2 1/3] drm/i915/uc: Allow platforms to have GuC but not HuC John.C.Harrison
` (9 more replies)
0 siblings, 10 replies; 12+ messages in thread
From: John.C.Harrison @ 2021-12-07 20:19 UTC (permalink / raw)
To: Intel-GFX; +Cc: DRI-Devel
From: John Harrison <John.C.Harrison@Intel.com>
Fix a potential null pointer dereference, improve debug crash reports,
improve code separation.
v2: Reposting as reduced set of patches due to CI failures.
Signed-off-by: John Harrison <John.C.Harrison@Intel.com>
John Harrison (3):
drm/i915/uc: Allow platforms to have GuC but not HuC
drm/i915/guc: Increase GuC log size for CONFIG_DEBUG_GEM
drm/i915/guc: Don't go bang in GuC log if no GuC
drivers/gpu/drm/i915/gt/uc/intel_guc_log.h | 5 +-
.../drm/i915/gt/uc/intel_guc_log_debugfs.c | 4 +-
drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c | 93 +++++++++++++------
3 files changed, 69 insertions(+), 33 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [Intel-gfx] [PATCH v2 1/3] drm/i915/uc: Allow platforms to have GuC but not HuC 2021-12-07 20:19 [Intel-gfx] [PATCH v2 0/3] Assorted fixes/tweaks to GuC support John.C.Harrison @ 2021-12-07 20:19 ` John.C.Harrison 2021-12-07 20:19 ` [Intel-gfx] [PATCH v2 2/3] drm/i915/guc: Increase GuC log size for CONFIG_DEBUG_GEM John.C.Harrison ` (8 subsequent siblings) 9 siblings, 0 replies; 12+ messages in thread From: John.C.Harrison @ 2021-12-07 20:19 UTC (permalink / raw) To: Intel-GFX; +Cc: Lucas De Marchi, DRI-Devel From: John Harrison <John.C.Harrison@Intel.com> It is possible for platforms to require GuC but not HuC firmware. Also, the firmware versions for GuC and HuC advance independently. So split the macros up to allow the lists to be maintained separately. Signed-off-by: John Harrison <John.C.Harrison@Intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> --- drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c | 93 ++++++++++++++++-------- 1 file changed, 63 insertions(+), 30 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c b/drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c index 3aa87be4f2e4..a7788ce50736 100644 --- a/drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c +++ b/drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c @@ -48,22 +48,39 @@ void intel_uc_fw_change_status(struct intel_uc_fw *uc_fw, * Note that RKL and ADL-S have the same GuC/HuC device ID's and use the same * firmware as TGL. */ -#define INTEL_UC_FIRMWARE_DEFS(fw_def, guc_def, huc_def) \ - fw_def(ALDERLAKE_P, 0, guc_def(adlp, 62, 0, 3), huc_def(tgl, 7, 9, 3)) \ - fw_def(ALDERLAKE_S, 0, guc_def(tgl, 62, 0, 0), huc_def(tgl, 7, 9, 3)) \ - fw_def(DG1, 0, guc_def(dg1, 62, 0, 0), huc_def(dg1, 7, 9, 3)) \ - fw_def(ROCKETLAKE, 0, guc_def(tgl, 62, 0, 0), huc_def(tgl, 7, 9, 3)) \ - fw_def(TIGERLAKE, 0, guc_def(tgl, 62, 0, 0), huc_def(tgl, 7, 9, 3)) \ - fw_def(JASPERLAKE, 0, guc_def(ehl, 62, 0, 0), huc_def(ehl, 9, 0, 0)) \ - fw_def(ELKHARTLAKE, 0, guc_def(ehl, 62, 0, 0), huc_def(ehl, 9, 0, 0)) \ - fw_def(ICELAKE, 0, guc_def(icl, 62, 0, 0), huc_def(icl, 9, 0, 0)) \ - fw_def(COMETLAKE, 5, guc_def(cml, 62, 0, 0), huc_def(cml, 4, 0, 0)) \ - fw_def(COMETLAKE, 0, guc_def(kbl, 62, 0, 0), huc_def(kbl, 4, 0, 0)) \ - fw_def(COFFEELAKE, 0, guc_def(kbl, 62, 0, 0), huc_def(kbl, 4, 0, 0)) \ - fw_def(GEMINILAKE, 0, guc_def(glk, 62, 0, 0), huc_def(glk, 4, 0, 0)) \ - fw_def(KABYLAKE, 0, guc_def(kbl, 62, 0, 0), huc_def(kbl, 4, 0, 0)) \ - fw_def(BROXTON, 0, guc_def(bxt, 62, 0, 0), huc_def(bxt, 2, 0, 0)) \ - fw_def(SKYLAKE, 0, guc_def(skl, 62, 0, 0), huc_def(skl, 2, 0, 0)) +#define INTEL_GUC_FIRMWARE_DEFS(fw_def, guc_def) \ + fw_def(ALDERLAKE_P, 0, guc_def(adlp, 62, 0, 3)) \ + fw_def(ALDERLAKE_S, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(DG1, 0, guc_def(dg1, 62, 0, 0)) \ + fw_def(ROCKETLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(TIGERLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(JASPERLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ICELAKE, 0, guc_def(icl, 62, 0, 0)) \ + fw_def(COMETLAKE, 5, guc_def(cml, 62, 0, 0)) \ + fw_def(COMETLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(COFFEELAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(GEMINILAKE, 0, guc_def(glk, 62, 0, 0)) \ + fw_def(KABYLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(BROXTON, 0, guc_def(bxt, 62, 0, 0)) \ + fw_def(SKYLAKE, 0, guc_def(skl, 62, 0, 0)) + +#define INTEL_HUC_FIRMWARE_DEFS(fw_def, huc_def) \ + fw_def(ALDERLAKE_P, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(ALDERLAKE_S, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(DG1, 0, huc_def(dg1, 7, 9, 3)) \ + fw_def(ROCKETLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(TIGERLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(JASPERLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ICELAKE, 0, huc_def(icl, 9, 0, 0)) \ + fw_def(COMETLAKE, 5, huc_def(cml, 4, 0, 0)) \ + fw_def(COMETLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(COFFEELAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(GEMINILAKE, 0, huc_def(glk, 4, 0, 0)) \ + fw_def(KABYLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(BROXTON, 0, huc_def(bxt, 2, 0, 0)) \ + fw_def(SKYLAKE, 0, huc_def(skl, 2, 0, 0)) #define __MAKE_UC_FW_PATH(prefix_, name_, major_, minor_, patch_) \ "i915/" \ @@ -79,11 +96,11 @@ void intel_uc_fw_change_status(struct intel_uc_fw *uc_fw, __MAKE_UC_FW_PATH(prefix_, "_huc_", major_, minor_, bld_num_) /* All blobs need to be declared via MODULE_FIRMWARE() */ -#define INTEL_UC_MODULE_FW(platform_, revid_, guc_, huc_) \ - MODULE_FIRMWARE(guc_); \ - MODULE_FIRMWARE(huc_); +#define INTEL_UC_MODULE_FW(platform_, revid_, uc_) \ + MODULE_FIRMWARE(uc_); -INTEL_UC_FIRMWARE_DEFS(INTEL_UC_MODULE_FW, MAKE_GUC_FW_PATH, MAKE_HUC_FW_PATH) +INTEL_GUC_FIRMWARE_DEFS(INTEL_UC_MODULE_FW, MAKE_GUC_FW_PATH) +INTEL_HUC_FIRMWARE_DEFS(INTEL_UC_MODULE_FW, MAKE_HUC_FW_PATH) /* The below structs and macros are used to iterate across the list of blobs */ struct __packed uc_fw_blob { @@ -106,31 +123,47 @@ struct __packed uc_fw_blob { struct __packed uc_fw_platform_requirement { enum intel_platform p; u8 rev; /* first platform rev using this FW */ - const struct uc_fw_blob blobs[INTEL_UC_FW_NUM_TYPES]; + const struct uc_fw_blob blob; }; -#define MAKE_FW_LIST(platform_, revid_, guc_, huc_) \ +#define MAKE_FW_LIST(platform_, revid_, uc_) \ { \ .p = INTEL_##platform_, \ .rev = revid_, \ - .blobs[INTEL_UC_FW_TYPE_GUC] = guc_, \ - .blobs[INTEL_UC_FW_TYPE_HUC] = huc_, \ + .blob = uc_, \ }, +struct fw_blobs_by_type { + const struct uc_fw_platform_requirement *blobs; + u32 count; +}; + static void __uc_fw_auto_select(struct drm_i915_private *i915, struct intel_uc_fw *uc_fw) { - static const struct uc_fw_platform_requirement fw_blobs[] = { - INTEL_UC_FIRMWARE_DEFS(MAKE_FW_LIST, GUC_FW_BLOB, HUC_FW_BLOB) + static const struct uc_fw_platform_requirement blobs_guc[] = { + INTEL_GUC_FIRMWARE_DEFS(MAKE_FW_LIST, GUC_FW_BLOB) + }; + static const struct uc_fw_platform_requirement blobs_huc[] = { + INTEL_HUC_FIRMWARE_DEFS(MAKE_FW_LIST, HUC_FW_BLOB) }; + static const struct fw_blobs_by_type blobs_all[INTEL_UC_FW_NUM_TYPES] = { + [INTEL_UC_FW_TYPE_GUC] = { blobs_guc, ARRAY_SIZE(blobs_guc) }, + [INTEL_UC_FW_TYPE_HUC] = { blobs_huc, ARRAY_SIZE(blobs_huc) }, + }; + static const struct uc_fw_platform_requirement *fw_blobs; enum intel_platform p = INTEL_INFO(i915)->platform; + u32 fw_count; u8 rev = INTEL_REVID(i915); int i; - for (i = 0; i < ARRAY_SIZE(fw_blobs) && p <= fw_blobs[i].p; i++) { + GEM_BUG_ON(uc_fw->type >= ARRAY_SIZE(blobs_all)); + fw_blobs = blobs_all[uc_fw->type].blobs; + fw_count = blobs_all[uc_fw->type].count; + + for (i = 0; i < fw_count && p <= fw_blobs[i].p; i++) { if (p == fw_blobs[i].p && rev >= fw_blobs[i].rev) { - const struct uc_fw_blob *blob = - &fw_blobs[i].blobs[uc_fw->type]; + const struct uc_fw_blob *blob = &fw_blobs[i].blob; uc_fw->path = blob->path; uc_fw->major_ver_wanted = blob->major; uc_fw->minor_ver_wanted = blob->minor; @@ -140,7 +173,7 @@ __uc_fw_auto_select(struct drm_i915_private *i915, struct intel_uc_fw *uc_fw) /* make sure the list is ordered as expected */ if (IS_ENABLED(CONFIG_DRM_I915_SELFTEST)) { - for (i = 1; i < ARRAY_SIZE(fw_blobs); i++) { + for (i = 1; i < fw_count; i++) { if (fw_blobs[i].p < fw_blobs[i - 1].p) continue; -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Intel-gfx] [PATCH v2 2/3] drm/i915/guc: Increase GuC log size for CONFIG_DEBUG_GEM 2021-12-07 20:19 [Intel-gfx] [PATCH v2 0/3] Assorted fixes/tweaks to GuC support John.C.Harrison 2021-12-07 20:19 ` [Intel-gfx] [PATCH v2 1/3] drm/i915/uc: Allow platforms to have GuC but not HuC John.C.Harrison @ 2021-12-07 20:19 ` John.C.Harrison 2021-12-07 20:19 ` [Intel-gfx] [PATCH v2 3/3] drm/i915/guc: Don't go bang in GuC log if no GuC John.C.Harrison ` (7 subsequent siblings) 9 siblings, 0 replies; 12+ messages in thread From: John.C.Harrison @ 2021-12-07 20:19 UTC (permalink / raw) To: Intel-GFX; +Cc: DRI-Devel From: John Harrison <John.C.Harrison@Intel.com> Lots of testing is done with the DEBUG_GEM config option enabled but not the DEBUG_GUC option. That means we only get teeny-tiny GuC logs which are not hugely useful. Enabling full DEBUG_GUC also spews lots of other detailed output that is not generally desired. However, bigger GuC logs are extremely useful for almost any regression debug. So enable bigger logs for DEBUG_GEM builds as well. Signed-off-by: John Harrison <John.C.Harrison@Intel.com> Reviewed-by: Matthew Brost <matthew.brost@intel.com> --- drivers/gpu/drm/i915/gt/uc/intel_guc_log.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.h b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.h index ac1ee1d5ce10..fe6ab7550a14 100644 --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.h +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.h @@ -15,9 +15,12 @@ struct intel_guc; -#ifdef CONFIG_DRM_I915_DEBUG_GUC +#if defined(CONFIG_DRM_I915_DEBUG_GUC) #define CRASH_BUFFER_SIZE SZ_2M #define DEBUG_BUFFER_SIZE SZ_16M +#elif defined(CONFIG_DRM_I915_DEBUG_GEM) +#define CRASH_BUFFER_SIZE SZ_1M +#define DEBUG_BUFFER_SIZE SZ_2M #else #define CRASH_BUFFER_SIZE SZ_8K #define DEBUG_BUFFER_SIZE SZ_64K -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Intel-gfx] [PATCH v2 3/3] drm/i915/guc: Don't go bang in GuC log if no GuC 2021-12-07 20:19 [Intel-gfx] [PATCH v2 0/3] Assorted fixes/tweaks to GuC support John.C.Harrison 2021-12-07 20:19 ` [Intel-gfx] [PATCH v2 1/3] drm/i915/uc: Allow platforms to have GuC but not HuC John.C.Harrison 2021-12-07 20:19 ` [Intel-gfx] [PATCH v2 2/3] drm/i915/guc: Increase GuC log size for CONFIG_DEBUG_GEM John.C.Harrison @ 2021-12-07 20:19 ` John.C.Harrison 2021-12-07 23:20 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Assorted fixes/tweaks to GuC support (rev4) Patchwork ` (6 subsequent siblings) 9 siblings, 0 replies; 12+ messages in thread From: John.C.Harrison @ 2021-12-07 20:19 UTC (permalink / raw) To: Intel-GFX; +Cc: Lucas De Marchi, DRI-Devel From: John Harrison <John.C.Harrison@Intel.com> If the GuC has failed to load for any reason and then the user pokes the debugfs GuC log interface, a BUG and/or null pointer deref can occur. Don't let that happen. Signed-off-by: John Harrison <John.C.Harrison@Intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> --- drivers/gpu/drm/i915/gt/uc/intel_guc_log_debugfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_log_debugfs.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_log_debugfs.c index 46026c2c1722..8fd068049376 100644 --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_log_debugfs.c +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_log_debugfs.c @@ -31,7 +31,7 @@ static int guc_log_level_get(void *data, u64 *val) { struct intel_guc_log *log = data; - if (!intel_guc_is_used(log_to_guc(log))) + if (!log->vma) return -ENODEV; *val = intel_guc_log_get_level(log); @@ -43,7 +43,7 @@ static int guc_log_level_set(void *data, u64 val) { struct intel_guc_log *log = data; - if (!intel_guc_is_used(log_to_guc(log))) + if (!log->vma) return -ENODEV; return intel_guc_log_set_level(log, val); -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Assorted fixes/tweaks to GuC support (rev4) 2021-12-07 20:19 [Intel-gfx] [PATCH v2 0/3] Assorted fixes/tweaks to GuC support John.C.Harrison ` (2 preceding siblings ...) 2021-12-07 20:19 ` [Intel-gfx] [PATCH v2 3/3] drm/i915/guc: Don't go bang in GuC log if no GuC John.C.Harrison @ 2021-12-07 23:20 ` Patchwork 2021-12-07 23:22 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork ` (5 subsequent siblings) 9 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2021-12-07 23:20 UTC (permalink / raw) To: John Harrison; +Cc: intel-gfx == Series Details == Series: Assorted fixes/tweaks to GuC support (rev4) URL : https://patchwork.freedesktop.org/series/97514/ State : warning == Summary == $ dim checkpatch origin/drm-tip 6f890802bd4f drm/i915/uc: Allow platforms to have GuC but not HuC -:38: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #38: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:51: +#define INTEL_GUC_FIRMWARE_DEFS(fw_def, guc_def) \ + fw_def(ALDERLAKE_P, 0, guc_def(adlp, 62, 0, 3)) \ + fw_def(ALDERLAKE_S, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(DG1, 0, guc_def(dg1, 62, 0, 0)) \ + fw_def(ROCKETLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(TIGERLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(JASPERLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ICELAKE, 0, guc_def(icl, 62, 0, 0)) \ + fw_def(COMETLAKE, 5, guc_def(cml, 62, 0, 0)) \ + fw_def(COMETLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(COFFEELAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(GEMINILAKE, 0, guc_def(glk, 62, 0, 0)) \ + fw_def(KABYLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(BROXTON, 0, guc_def(bxt, 62, 0, 0)) \ + fw_def(SKYLAKE, 0, guc_def(skl, 62, 0, 0)) -:38: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'fw_def' - possible side-effects? #38: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:51: +#define INTEL_GUC_FIRMWARE_DEFS(fw_def, guc_def) \ + fw_def(ALDERLAKE_P, 0, guc_def(adlp, 62, 0, 3)) \ + fw_def(ALDERLAKE_S, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(DG1, 0, guc_def(dg1, 62, 0, 0)) \ + fw_def(ROCKETLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(TIGERLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(JASPERLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ICELAKE, 0, guc_def(icl, 62, 0, 0)) \ + fw_def(COMETLAKE, 5, guc_def(cml, 62, 0, 0)) \ + fw_def(COMETLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(COFFEELAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(GEMINILAKE, 0, guc_def(glk, 62, 0, 0)) \ + fw_def(KABYLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(BROXTON, 0, guc_def(bxt, 62, 0, 0)) \ + fw_def(SKYLAKE, 0, guc_def(skl, 62, 0, 0)) -:38: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'guc_def' - possible side-effects? #38: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:51: +#define INTEL_GUC_FIRMWARE_DEFS(fw_def, guc_def) \ + fw_def(ALDERLAKE_P, 0, guc_def(adlp, 62, 0, 3)) \ + fw_def(ALDERLAKE_S, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(DG1, 0, guc_def(dg1, 62, 0, 0)) \ + fw_def(ROCKETLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(TIGERLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(JASPERLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ICELAKE, 0, guc_def(icl, 62, 0, 0)) \ + fw_def(COMETLAKE, 5, guc_def(cml, 62, 0, 0)) \ + fw_def(COMETLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(COFFEELAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(GEMINILAKE, 0, guc_def(glk, 62, 0, 0)) \ + fw_def(KABYLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(BROXTON, 0, guc_def(bxt, 62, 0, 0)) \ + fw_def(SKYLAKE, 0, guc_def(skl, 62, 0, 0)) -:55: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #55: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:68: +#define INTEL_HUC_FIRMWARE_DEFS(fw_def, huc_def) \ + fw_def(ALDERLAKE_P, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(ALDERLAKE_S, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(DG1, 0, huc_def(dg1, 7, 9, 3)) \ + fw_def(ROCKETLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(TIGERLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(JASPERLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ICELAKE, 0, huc_def(icl, 9, 0, 0)) \ + fw_def(COMETLAKE, 5, huc_def(cml, 4, 0, 0)) \ + fw_def(COMETLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(COFFEELAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(GEMINILAKE, 0, huc_def(glk, 4, 0, 0)) \ + fw_def(KABYLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(BROXTON, 0, huc_def(bxt, 2, 0, 0)) \ + fw_def(SKYLAKE, 0, huc_def(skl, 2, 0, 0)) -:55: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'fw_def' - possible side-effects? #55: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:68: +#define INTEL_HUC_FIRMWARE_DEFS(fw_def, huc_def) \ + fw_def(ALDERLAKE_P, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(ALDERLAKE_S, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(DG1, 0, huc_def(dg1, 7, 9, 3)) \ + fw_def(ROCKETLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(TIGERLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(JASPERLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ICELAKE, 0, huc_def(icl, 9, 0, 0)) \ + fw_def(COMETLAKE, 5, huc_def(cml, 4, 0, 0)) \ + fw_def(COMETLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(COFFEELAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(GEMINILAKE, 0, huc_def(glk, 4, 0, 0)) \ + fw_def(KABYLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(BROXTON, 0, huc_def(bxt, 2, 0, 0)) \ + fw_def(SKYLAKE, 0, huc_def(skl, 2, 0, 0)) -:55: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'huc_def' - possible side-effects? #55: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:68: +#define INTEL_HUC_FIRMWARE_DEFS(fw_def, huc_def) \ + fw_def(ALDERLAKE_P, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(ALDERLAKE_S, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(DG1, 0, huc_def(dg1, 7, 9, 3)) \ + fw_def(ROCKETLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(TIGERLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(JASPERLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ICELAKE, 0, huc_def(icl, 9, 0, 0)) \ + fw_def(COMETLAKE, 5, huc_def(cml, 4, 0, 0)) \ + fw_def(COMETLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(COFFEELAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(GEMINILAKE, 0, huc_def(glk, 4, 0, 0)) \ + fw_def(KABYLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(BROXTON, 0, huc_def(bxt, 2, 0, 0)) \ + fw_def(SKYLAKE, 0, huc_def(skl, 2, 0, 0)) -:81: WARNING:TRAILING_SEMICOLON: macros should not use a trailing semicolon #81: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:99: +#define INTEL_UC_MODULE_FW(platform_, revid_, uc_) \ + MODULE_FIRMWARE(uc_); total: 2 errors, 1 warnings, 4 checks, 134 lines checked 219d6bcf4f23 drm/i915/guc: Increase GuC log size for CONFIG_DEBUG_GEM 17ff7c35b692 drm/i915/guc: Don't go bang in GuC log if no GuC ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for Assorted fixes/tweaks to GuC support (rev4) 2021-12-07 20:19 [Intel-gfx] [PATCH v2 0/3] Assorted fixes/tweaks to GuC support John.C.Harrison ` (3 preceding siblings ...) 2021-12-07 23:20 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Assorted fixes/tweaks to GuC support (rev4) Patchwork @ 2021-12-07 23:22 ` Patchwork 2021-12-08 0:01 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork ` (4 subsequent siblings) 9 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2021-12-07 23:22 UTC (permalink / raw) To: John Harrison; +Cc: intel-gfx == Series Details == Series: Assorted fixes/tweaks to GuC support (rev4) URL : https://patchwork.freedesktop.org/series/97514/ State : warning == Summary == $ dim sparse --fast origin/drm-tip Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for Assorted fixes/tweaks to GuC support (rev4) 2021-12-07 20:19 [Intel-gfx] [PATCH v2 0/3] Assorted fixes/tweaks to GuC support John.C.Harrison ` (4 preceding siblings ...) 2021-12-07 23:22 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork @ 2021-12-08 0:01 ` Patchwork 2021-12-08 21:09 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Assorted fixes/tweaks to GuC support (rev5) Patchwork ` (3 subsequent siblings) 9 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2021-12-08 0:01 UTC (permalink / raw) To: John Harrison; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 10254 bytes --] == Series Details == Series: Assorted fixes/tweaks to GuC support (rev4) URL : https://patchwork.freedesktop.org/series/97514/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10970 -> Patchwork_21779 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_21779 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_21779, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/index.html Participating hosts (42 -> 33) ------------------------------ Additional (2): fi-kbl-soraka fi-pnv-d510 Missing (11): bat-dg1-6 bat-dg1-5 fi-hsw-4200u fi-icl-u2 fi-bsw-cyan bat-adlp-6 bat-adlp-4 fi-ctg-p8600 fi-bdw-samus bat-jsl-2 bat-jsl-1 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_21779: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@requests: - fi-kbl-soraka: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-kbl-soraka/igt@i915_selftest@live@requests.html Known issues ------------ Here are the changes found in Patchwork_21779 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fence@basic-busy@bcs0: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271]) +8 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html * igt@gem_huc_copy@huc-copy: - fi-skl-6600u: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@verify-random: - fi-skl-6600u: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4613]) +3 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-skl-6600u/igt@gem_lmem_swapping@verify-random.html * igt@i915_module_load@reload: - fi-tgl-1115g4: [PASS][7] -> [DMESG-WARN][8] ([i915#1982]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10970/fi-tgl-1115g4/igt@i915_module_load@reload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-tgl-1115g4/igt@i915_module_load@reload.html * igt@i915_selftest@live@gt_engines: - fi-rkl-guc: [PASS][9] -> [INCOMPLETE][10] ([i915#4432]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10970/fi-rkl-guc/igt@i915_selftest@live@gt_engines.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-rkl-guc/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][11] ([i915#1886] / [i915#2291]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@requests: - fi-blb-e6850: [PASS][12] -> [DMESG-FAIL][13] ([i915#4528]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10970/fi-blb-e6850/igt@i915_selftest@live@requests.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-blb-e6850/igt@i915_selftest@live@requests.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-kbl-soraka: NOTRUN -> [SKIP][14] ([fdo#109271] / [fdo#111827]) +8 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-kbl-soraka/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@vga-edid-read: - fi-skl-6600u: NOTRUN -> [SKIP][15] ([fdo#109271] / [fdo#111827]) +8 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-skl-6600u/igt@kms_chamelium@vga-edid-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-skl-6600u: NOTRUN -> [SKIP][16] ([fdo#109271]) +2 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-skl-6600u/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_frontbuffer_tracking@basic: - fi-cml-u2: [PASS][17] -> [DMESG-WARN][18] ([i915#4269]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10970/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-skl-6600u: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#533]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html - fi-kbl-soraka: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#533]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@kms_psr@primary_page_flip: - fi-skl-6600u: NOTRUN -> [FAIL][21] ([i915#4547]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-skl-6600u/igt@kms_psr@primary_page_flip.html * igt@prime_vgem@basic-userptr: - fi-pnv-d510: NOTRUN -> [SKIP][22] ([fdo#109271]) +57 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-pnv-d510/igt@prime_vgem@basic-userptr.html * igt@runner@aborted: - fi-bdw-5557u: NOTRUN -> [FAIL][23] ([i915#2426] / [i915#4312]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-bdw-5557u/igt@runner@aborted.html - fi-kbl-soraka: NOTRUN -> [FAIL][24] ([i915#1436] / [i915#3363] / [i915#4312]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-kbl-soraka/igt@runner@aborted.html - fi-rkl-guc: NOTRUN -> [FAIL][25] ([i915#3928] / [i915#4312]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-rkl-guc/igt@runner@aborted.html - fi-blb-e6850: NOTRUN -> [FAIL][26] ([fdo#109271] / [i915#2403] / [i915#4312]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-blb-e6850/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3: - fi-tgl-1115g4: [FAIL][27] ([i915#1888]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10970/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html * igt@gem_flink_basic@bad-flink: - fi-skl-6600u: [FAIL][29] ([i915#4547]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10970/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html * igt@kms_frontbuffer_tracking@basic: - fi-cfl-8109u: [DMESG-FAIL][31] ([i915#295]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10970/fi-cfl-8109u/igt@kms_frontbuffer_tracking@basic.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-cfl-8109u/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b: - fi-cfl-8109u: [DMESG-WARN][33] ([i915#295]) -> [PASS][34] +10 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10970/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291 [i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403 [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426 [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295 [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363 [i915#3928]: https://gitlab.freedesktop.org/drm/intel/issues/3928 [i915#4269]: https://gitlab.freedesktop.org/drm/intel/issues/4269 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4432]: https://gitlab.freedesktop.org/drm/intel/issues/4432 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * Linux: CI_DRM_10970 -> Patchwork_21779 CI-20190529: 20190529 CI_DRM_10970: 9368928e088bcfb4bebd54c2ae18603988f40c26 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6301: dcf994172ae04d57adc851668c39e37945f195fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_21779: 17ff7c35b6928ac0d225e15a4314a4840fe7aa69 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 17ff7c35b692 drm/i915/guc: Don't go bang in GuC log if no GuC 219d6bcf4f23 drm/i915/guc: Increase GuC log size for CONFIG_DEBUG_GEM 6f890802bd4f drm/i915/uc: Allow platforms to have GuC but not HuC == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21779/index.html [-- Attachment #2: Type: text/html, Size: 12802 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Assorted fixes/tweaks to GuC support (rev5) 2021-12-07 20:19 [Intel-gfx] [PATCH v2 0/3] Assorted fixes/tweaks to GuC support John.C.Harrison ` (5 preceding siblings ...) 2021-12-08 0:01 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork @ 2021-12-08 21:09 ` Patchwork 2021-12-08 21:10 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork ` (2 subsequent siblings) 9 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2021-12-08 21:09 UTC (permalink / raw) To: John Harrison; +Cc: intel-gfx == Series Details == Series: Assorted fixes/tweaks to GuC support (rev5) URL : https://patchwork.freedesktop.org/series/97514/ State : warning == Summary == $ dim checkpatch origin/drm-tip c3fc4bbf3adb drm/i915/uc: Allow platforms to have GuC but not HuC -:38: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #38: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:51: +#define INTEL_GUC_FIRMWARE_DEFS(fw_def, guc_def) \ + fw_def(ALDERLAKE_P, 0, guc_def(adlp, 62, 0, 3)) \ + fw_def(ALDERLAKE_S, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(DG1, 0, guc_def(dg1, 62, 0, 0)) \ + fw_def(ROCKETLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(TIGERLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(JASPERLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ICELAKE, 0, guc_def(icl, 62, 0, 0)) \ + fw_def(COMETLAKE, 5, guc_def(cml, 62, 0, 0)) \ + fw_def(COMETLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(COFFEELAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(GEMINILAKE, 0, guc_def(glk, 62, 0, 0)) \ + fw_def(KABYLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(BROXTON, 0, guc_def(bxt, 62, 0, 0)) \ + fw_def(SKYLAKE, 0, guc_def(skl, 62, 0, 0)) -:38: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'fw_def' - possible side-effects? #38: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:51: +#define INTEL_GUC_FIRMWARE_DEFS(fw_def, guc_def) \ + fw_def(ALDERLAKE_P, 0, guc_def(adlp, 62, 0, 3)) \ + fw_def(ALDERLAKE_S, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(DG1, 0, guc_def(dg1, 62, 0, 0)) \ + fw_def(ROCKETLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(TIGERLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(JASPERLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ICELAKE, 0, guc_def(icl, 62, 0, 0)) \ + fw_def(COMETLAKE, 5, guc_def(cml, 62, 0, 0)) \ + fw_def(COMETLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(COFFEELAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(GEMINILAKE, 0, guc_def(glk, 62, 0, 0)) \ + fw_def(KABYLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(BROXTON, 0, guc_def(bxt, 62, 0, 0)) \ + fw_def(SKYLAKE, 0, guc_def(skl, 62, 0, 0)) -:38: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'guc_def' - possible side-effects? #38: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:51: +#define INTEL_GUC_FIRMWARE_DEFS(fw_def, guc_def) \ + fw_def(ALDERLAKE_P, 0, guc_def(adlp, 62, 0, 3)) \ + fw_def(ALDERLAKE_S, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(DG1, 0, guc_def(dg1, 62, 0, 0)) \ + fw_def(ROCKETLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(TIGERLAKE, 0, guc_def(tgl, 62, 0, 0)) \ + fw_def(JASPERLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, guc_def(ehl, 62, 0, 0)) \ + fw_def(ICELAKE, 0, guc_def(icl, 62, 0, 0)) \ + fw_def(COMETLAKE, 5, guc_def(cml, 62, 0, 0)) \ + fw_def(COMETLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(COFFEELAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(GEMINILAKE, 0, guc_def(glk, 62, 0, 0)) \ + fw_def(KABYLAKE, 0, guc_def(kbl, 62, 0, 0)) \ + fw_def(BROXTON, 0, guc_def(bxt, 62, 0, 0)) \ + fw_def(SKYLAKE, 0, guc_def(skl, 62, 0, 0)) -:55: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #55: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:68: +#define INTEL_HUC_FIRMWARE_DEFS(fw_def, huc_def) \ + fw_def(ALDERLAKE_P, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(ALDERLAKE_S, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(DG1, 0, huc_def(dg1, 7, 9, 3)) \ + fw_def(ROCKETLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(TIGERLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(JASPERLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ICELAKE, 0, huc_def(icl, 9, 0, 0)) \ + fw_def(COMETLAKE, 5, huc_def(cml, 4, 0, 0)) \ + fw_def(COMETLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(COFFEELAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(GEMINILAKE, 0, huc_def(glk, 4, 0, 0)) \ + fw_def(KABYLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(BROXTON, 0, huc_def(bxt, 2, 0, 0)) \ + fw_def(SKYLAKE, 0, huc_def(skl, 2, 0, 0)) -:55: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'fw_def' - possible side-effects? #55: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:68: +#define INTEL_HUC_FIRMWARE_DEFS(fw_def, huc_def) \ + fw_def(ALDERLAKE_P, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(ALDERLAKE_S, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(DG1, 0, huc_def(dg1, 7, 9, 3)) \ + fw_def(ROCKETLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(TIGERLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(JASPERLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ICELAKE, 0, huc_def(icl, 9, 0, 0)) \ + fw_def(COMETLAKE, 5, huc_def(cml, 4, 0, 0)) \ + fw_def(COMETLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(COFFEELAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(GEMINILAKE, 0, huc_def(glk, 4, 0, 0)) \ + fw_def(KABYLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(BROXTON, 0, huc_def(bxt, 2, 0, 0)) \ + fw_def(SKYLAKE, 0, huc_def(skl, 2, 0, 0)) -:55: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'huc_def' - possible side-effects? #55: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:68: +#define INTEL_HUC_FIRMWARE_DEFS(fw_def, huc_def) \ + fw_def(ALDERLAKE_P, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(ALDERLAKE_S, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(DG1, 0, huc_def(dg1, 7, 9, 3)) \ + fw_def(ROCKETLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(TIGERLAKE, 0, huc_def(tgl, 7, 9, 3)) \ + fw_def(JASPERLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ELKHARTLAKE, 0, huc_def(ehl, 9, 0, 0)) \ + fw_def(ICELAKE, 0, huc_def(icl, 9, 0, 0)) \ + fw_def(COMETLAKE, 5, huc_def(cml, 4, 0, 0)) \ + fw_def(COMETLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(COFFEELAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(GEMINILAKE, 0, huc_def(glk, 4, 0, 0)) \ + fw_def(KABYLAKE, 0, huc_def(kbl, 4, 0, 0)) \ + fw_def(BROXTON, 0, huc_def(bxt, 2, 0, 0)) \ + fw_def(SKYLAKE, 0, huc_def(skl, 2, 0, 0)) -:81: WARNING:TRAILING_SEMICOLON: macros should not use a trailing semicolon #81: FILE: drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c:99: +#define INTEL_UC_MODULE_FW(platform_, revid_, uc_) \ + MODULE_FIRMWARE(uc_); total: 2 errors, 1 warnings, 4 checks, 134 lines checked 4114fdf2cab8 drm/i915/guc: Increase GuC log size for CONFIG_DEBUG_GEM e5e938d662b1 drm/i915/guc: Don't go bang in GuC log if no GuC ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for Assorted fixes/tweaks to GuC support (rev5) 2021-12-07 20:19 [Intel-gfx] [PATCH v2 0/3] Assorted fixes/tweaks to GuC support John.C.Harrison ` (6 preceding siblings ...) 2021-12-08 21:09 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Assorted fixes/tweaks to GuC support (rev5) Patchwork @ 2021-12-08 21:10 ` Patchwork 2021-12-08 21:40 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2021-12-09 4:03 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 9 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2021-12-08 21:10 UTC (permalink / raw) To: John Harrison; +Cc: intel-gfx == Series Details == Series: Assorted fixes/tweaks to GuC support (rev5) URL : https://patchwork.freedesktop.org/series/97514/ State : warning == Summary == $ dim sparse --fast origin/drm-tip Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for Assorted fixes/tweaks to GuC support (rev5) 2021-12-07 20:19 [Intel-gfx] [PATCH v2 0/3] Assorted fixes/tweaks to GuC support John.C.Harrison ` (7 preceding siblings ...) 2021-12-08 21:10 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork @ 2021-12-08 21:40 ` Patchwork 2021-12-09 4:03 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 9 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2021-12-08 21:40 UTC (permalink / raw) To: John Harrison; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4772 bytes --] == Series Details == Series: Assorted fixes/tweaks to GuC support (rev5) URL : https://patchwork.freedesktop.org/series/97514/ State : success == Summary == CI Bug Log - changes from CI_DRM_10975 -> Patchwork_21793 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/index.html Participating hosts (44 -> 35) ------------------------------ Additional (1): fi-blb-e6850 Missing (10): fi-ilk-m540 bat-dg1-6 fi-tgl-u2 fi-hsw-4200u fi-bsw-cyan bat-adlp-6 bat-adlp-4 fi-ctg-p8600 bat-jsl-2 fi-bdw-samus Known issues ------------ Here are the changes found in Patchwork_21793 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@query-info: - fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/fi-kbl-soraka/igt@amdgpu/amd_basic@query-info.html * igt@amdgpu/amd_cs_nop@sync-fork-gfx0: - fi-skl-6600u: NOTRUN -> [SKIP][2] ([fdo#109271]) +21 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html * igt@gem_huc_copy@huc-copy: - fi-skl-6600u: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@verify-random: - fi-skl-6600u: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/fi-skl-6600u/igt@gem_lmem_swapping@verify-random.html * igt@i915_selftest@live@hangcheck: - fi-snb-2600: [PASS][5] -> [INCOMPLETE][6] ([i915#3921]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/fi-snb-2600/igt@i915_selftest@live@hangcheck.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/fi-snb-2600/igt@i915_selftest@live@hangcheck.html * igt@kms_chamelium@vga-edid-read: - fi-skl-6600u: NOTRUN -> [SKIP][7] ([fdo#109271] / [fdo#111827]) +8 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/fi-skl-6600u/igt@kms_chamelium@vga-edid-read.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-blb-e6850: NOTRUN -> [SKIP][8] ([fdo#109271]) +57 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/fi-blb-e6850/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html - fi-skl-6600u: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#533]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html #### Possible fixes #### * igt@gem_flink_basic@bad-flink: - fi-skl-6600u: [FAIL][10] ([i915#4547]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html * igt@kms_frontbuffer_tracking@basic: - fi-cml-u2: [DMESG-WARN][12] ([i915#4269]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#4269]: https://gitlab.freedesktop.org/drm/intel/issues/4269 [i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * Linux: CI_DRM_10975 -> Patchwork_21793 CI-20190529: 20190529 CI_DRM_10975: 507f8499e1a8233d802d52af099e32c4e6266adf @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6303: 49deb6b505c293a60dd3b3976a63c467bf88442e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_21793: e5e938d662b1f23639f5f3980eab7eb42cf449fd @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == e5e938d662b1 drm/i915/guc: Don't go bang in GuC log if no GuC 4114fdf2cab8 drm/i915/guc: Increase GuC log size for CONFIG_DEBUG_GEM c3fc4bbf3adb drm/i915/uc: Allow platforms to have GuC but not HuC == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/index.html [-- Attachment #2: Type: text/html, Size: 6027 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for Assorted fixes/tweaks to GuC support (rev5) 2021-12-07 20:19 [Intel-gfx] [PATCH v2 0/3] Assorted fixes/tweaks to GuC support John.C.Harrison ` (8 preceding siblings ...) 2021-12-08 21:40 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2021-12-09 4:03 ` Patchwork 2021-12-09 23:56 ` John Harrison 9 siblings, 1 reply; 12+ messages in thread From: Patchwork @ 2021-12-09 4:03 UTC (permalink / raw) To: John Harrison; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 30266 bytes --] == Series Details == Series: Assorted fixes/tweaks to GuC support (rev5) URL : https://patchwork.freedesktop.org/series/97514/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10975_full -> Patchwork_21793_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_21793_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_21793_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_21793_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-snb: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-snb7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-snb7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html Known issues ------------ Here are the changes found in Patchwork_21793_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_eio@in-flight-contexts-immediate: - shard-iclb: [PASS][3] -> [TIMEOUT][4] ([i915#3070]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb8/igt@gem_eio@in-flight-contexts-immediate.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb3/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_eio@unwedge-stress: - shard-tglb: [PASS][5] -> [TIMEOUT][6] ([i915#3063] / [i915#3648]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-tglb1/igt@gem_eio@unwedge-stress.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb8/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-tglb: NOTRUN -> [SKIP][7] ([i915#4525]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@pi@rcs0: - shard-skl: [PASS][8] -> [INCOMPLETE][9] ([i915#4547]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl5/igt@gem_exec_capture@pi@rcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl8/igt@gem_exec_capture@pi@rcs0.html * igt@gem_exec_fair@basic-deadline: - shard-skl: NOTRUN -> [FAIL][10] ([i915#2846]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb1/igt@gem_exec_fair@basic-none-share@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb1/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-kbl: NOTRUN -> [FAIL][13] ([i915#2842]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl6/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_whisper@basic-queues: - shard-glk: [PASS][14] -> [DMESG-WARN][15] ([i915#118]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-glk5/igt@gem_exec_whisper@basic-queues.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-glk4/igt@gem_exec_whisper@basic-queues.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglb: NOTRUN -> [SKIP][16] ([i915#4613]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-apl: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#4613]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random: - shard-skl: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#4613]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-random: - shard-kbl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#4613]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl3/igt@gem_lmem_swapping@verify-random.html * igt@gem_pwrite@basic-exhaustion: - shard-skl: NOTRUN -> [WARN][20] ([i915#2658]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglb: NOTRUN -> [SKIP][21] ([i915#3297]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: NOTRUN -> [DMESG-WARN][22] ([i915#180]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@batch-invalid-length: - shard-snb: NOTRUN -> [SKIP][23] ([fdo#109271]) +43 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-snb7/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-start-far: - shard-tglb: NOTRUN -> [SKIP][24] ([i915#2856]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@gen9_exec_parse@bb-start-far.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: NOTRUN -> [FAIL][25] ([i915#454]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglb: NOTRUN -> [SKIP][26] ([fdo#109506] / [i915#2411]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_suspend@sysfs-reader: - shard-apl: [PASS][27] -> [DMESG-WARN][28] ([i915#180]) +3 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-apl2/igt@i915_suspend@sysfs-reader.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl4/igt@i915_suspend@sysfs-reader.html - shard-kbl: [PASS][29] -> [DMESG-WARN][30] ([i915#180]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-kbl2/igt@i915_suspend@sysfs-reader.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@i915_suspend@sysfs-reader.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-skl: [PASS][31] -> [FAIL][32] ([i915#2521]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl6/igt@kms_async_flips@alternate-sync-async-flip.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl4/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-skl: NOTRUN -> [FAIL][33] ([i915#3743]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-kbl: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3777]) +2 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-skl: NOTRUN -> [FAIL][35] ([i915#3763]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][36] ([fdo#111615]) +2 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-skl: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3777]) +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3886]) +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3886]) +7 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][40] ([i915#3689] / [i915#3886]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-skl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886]) +11 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][42] ([fdo#111615] / [i915#3689]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][43] ([i915#3689]) +3 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_chamelium@dp-hpd-storm-disable: - shard-tglb: NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) +2 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_chamelium@dp-hpd-storm-disable.html * igt@kms_chamelium@hdmi-mode-timings: - shard-kbl: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +10 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl2/igt@kms_chamelium@hdmi-mode-timings.html * igt@kms_color_chamelium@pipe-a-ctm-0-25: - shard-snb: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-snb7/igt@kms_color_chamelium@pipe-a-ctm-0-25.html * igt@kms_color_chamelium@pipe-b-ctm-0-25: - shard-apl: NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@kms_color_chamelium@pipe-b-ctm-0-25.html * igt@kms_color_chamelium@pipe-d-degamma: - shard-skl: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +21 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl1/igt@kms_color_chamelium@pipe-d-degamma.html * igt@kms_content_protection@lic: - shard-kbl: NOTRUN -> [TIMEOUT][49] ([i915#1319]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@kms_content_protection@lic.html * igt@kms_content_protection@srm: - shard-tglb: NOTRUN -> [SKIP][50] ([fdo#111828]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@pipe-a-cursor-512x170-sliding: - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#109279] / [i915#3359]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-512x170-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen: - shard-skl: NOTRUN -> [SKIP][52] ([fdo#109271]) +280 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl7/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding: - shard-tglb: NOTRUN -> [SKIP][53] ([i915#3319]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding.html * igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#3359]) +3 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglb: NOTRUN -> [SKIP][55] ([i915#4103]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-skl: NOTRUN -> [FAIL][56] ([i915#2346]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-skl: NOTRUN -> [FAIL][57] ([i915#2346] / [i915#533]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][58] -> [FAIL][59] ([i915#79]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-skl: NOTRUN -> [FAIL][60] ([i915#79]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@c-edp1: - shard-skl: [PASS][61] -> [INCOMPLETE][62] ([i915#198]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl1/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl9/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html * igt@kms_flip@plain-flip-fb-recreate@c-edp1: - shard-skl: [PASS][63] -> [FAIL][64] ([i915#2122]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl7/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl9/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile: - shard-tglb: NOTRUN -> [SKIP][65] ([i915#2587]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs: - shard-skl: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#2672]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-kbl: NOTRUN -> [SKIP][67] ([fdo#109271]) +162 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][68] ([fdo#111825]) +22 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglb: NOTRUN -> [SKIP][69] ([i915#1839]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - shard-skl: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#533]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb: - shard-skl: NOTRUN -> [FAIL][71] ([i915#265]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: - shard-kbl: NOTRUN -> [FAIL][72] ([i915#265]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][73] ([fdo#108145] / [i915#265]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max: - shard-skl: NOTRUN -> [FAIL][74] ([fdo#108145] / [i915#265]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping: - shard-kbl: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#2733]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-tglb: NOTRUN -> [SKIP][76] ([i915#2920]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1: - shard-skl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#658]) +6 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-1: - shard-kbl: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#658]) +3 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl6/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3: - shard-apl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#658]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3.html * igt@kms_psr@psr2_dpms: - shard-tglb: NOTRUN -> [FAIL][80] ([i915#132] / [i915#3467]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_psr@psr2_dpms.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [PASS][81] -> [SKIP][82] ([fdo#109441]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_rotation_crc@bad-tiling: - shard-skl: [PASS][83] -> [DMESG-WARN][84] ([i915#1982]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl10/igt@kms_rotation_crc@bad-tiling.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl6/igt@kms_rotation_crc@bad-tiling.html * igt@kms_selftest@all@check_plane_state: - shard-apl: NOTRUN -> [INCOMPLETE][85] ([i915#4663]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl6/igt@kms_selftest@all@check_plane_state.html * igt@kms_sysfs_edid_timing: - shard-kbl: NOTRUN -> [FAIL][86] ([IGT#2]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@kms_sysfs_edid_timing.html * igt@kms_writeback@writeback-check-output: - shard-skl: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#2437]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl1/igt@kms_writeback@writeback-check-output.html - shard-tglb: NOTRUN -> [SKIP][88] ([i915#2437]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_writeback@writeback-check-output.html * igt@nouveau_crc@pipe-d-source-outp-inactive: - shard-tglb: NOTRUN -> [SKIP][89] ([i915#2530]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@nouveau_crc@pipe-d-source-outp-inactive.html * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name: - shard-apl: NOTRUN -> [SKIP][90] ([fdo#109271]) +38 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html * igt@sysfs_clients@fair-3: - shard-skl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2994]) +4 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl6/igt@sysfs_clients@fair-3.html * igt@sysfs_clients@sema-25: - shard-kbl: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#2994]) +4 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl6/igt@sysfs_clients@sema-25.html * igt@sysfs_clients@split-10: - shard-tglb: NOTRUN -> [SKIP][93] ([i915#2994]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@sysfs_clients@split-10.html * igt@sysfs_clients@split-50: - shard-apl: NOTRUN -> [SKIP][94] ([fdo#109271] / [i915#2994]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: [FAIL][95] ([i915#2842]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-glk7/igt@gem_exec_fair@basic-none-rrul@rcs0.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [FAIL][97] ([i915#2849]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [DMESG-WARN][99] ([i915#180]) -> [PASS][100] +2 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-apl2/igt@gem_workarounds@suspend-resume-context.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@gem_workarounds@suspend-resume-context.html * igt@i915_selftest@live@hangcheck: - shard-snb: [INCOMPLETE][101] ([i915#3921]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-snb2/igt@i915_selftest@live@hangcheck.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-snb7/igt@i915_selftest@live@hangcheck.html * igt@kms_big_fb@x-tiled-32bpp-rotate-180: - shard-glk: [DMESG-WARN][103] ([i915#118]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-glk7/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-glk5/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-iclb: [FAIL][105] ([i915#2346]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-skl: [FAIL][107] ([i915#2346]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-kbl: [INCOMPLETE][109] ([i915#180] / [i915#636]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2: - shard-glk: [FAIL][111] ([i915#79]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-glk1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-glk4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html * igt@kms_flip@plain-flip-fb-recreate@a-edp1: - shard-skl: [FAIL][113] ([i915#2122]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl9/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-edp1: - shard-tglb: [INCOMPLETE][115] -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-tglb6/igt@kms_flip@plain-flip-ts-check-interruptible@b-edp1.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_flip@plain-flip-ts-check-interruptible@b-edp1.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: [DMESG-WARN][117] ([i915#180]) -> [PASS][118] +4 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_plane_alpha_blend@pipe-a-coverage-7efc: - shard-skl: [FAIL][119] ([fdo#108145] / [i915#265]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl9/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: [SKIP][121] ([fdo#109441]) -> [PASS][122] +1 similar issue [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb7/igt@kms_psr@psr2_sprite_blt.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html * igt@kms_sequence@get-forked-busy: - shard-snb: [SKIP][123] ([fdo#109271]) -> [PASS][124] +1 similar issue [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-snb2/igt@kms_sequence@get-forked-busy.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-snb2/igt@kms_sequence@get-forked-busy.html * igt@kms_setmode@basic: - shard-glk: [FAIL][125] ([i915#31]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-glk3/igt@kms_setmode@basic.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-glk7/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [DMESG-WARN][127] ([i915#180] / [i915#295]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@perf@polling-small-buf: - shard-skl: [FAIL][129] ([i915#1722]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl7/igt@perf@polling-small-buf.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl6/igt@perf@polling-small-buf.html #### Warnings #### * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1: - shard-iclb: [SKIP][131] ([i915#658]) -> [SKIP][132] ([i915#2920]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-iclb: [FAIL][133] ([i915#4688]) -> [SKIP][134] ([i915#658]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb2/igt@kms_psr2_s == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/index.html [-- Attachment #2: Type: text/html, Size: 33617 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for Assorted fixes/tweaks to GuC support (rev5) 2021-12-09 4:03 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-12-09 23:56 ` John Harrison 0 siblings, 0 replies; 12+ messages in thread From: John Harrison @ 2021-12-09 23:56 UTC (permalink / raw) To: intel-gfx [-- Attachment #1: Type: text/plain, Size: 31938 bytes --] On 12/8/2021 20:03, Patchwork wrote: > Project List - Patchwork *Patch Details* > *Series:* Assorted fixes/tweaks to GuC support (rev5) > *URL:* https://patchwork.freedesktop.org/series/97514/ > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/index.html > > > CI Bug Log - changes from CI_DRM_10975_full -> Patchwork_21793_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with Patchwork_21793_full absolutely > need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_21793_full, please notify your bug team to > allow them > to document this new failure mode, which will reduce false positives > in CI. > > > Participating hosts (9 -> 9) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > Patchwork_21793_full: > > > IGT changes > > > Possible regressions > > * igt@kms_cursor_crc@pipe-a-cursor-suspend: > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-snb7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-snb7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html> > This is an unrelated failure. The warning is: <4> [46.801805] unchecked MSR access error: RDMSR from 0x1b0 at rIP: 0xffffffff8103a32f (intel_epb_restore+0xf/0x90) Not sure what that means but it is on a SNB device when running a KMS cursor test. SNB does not use GuC and the patches in this series only affect GuC platforms and don't actually have any functional change anyway. John. > * > > > Known issues > > Here are the changes found in Patchwork_21793_full that come from > known issues: > > > IGT changes > > > Issues hit > > * > > igt@gem_eio@in-flight-contexts-immediate: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb8/igt@gem_eio@in-flight-contexts-immediate.html> > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb3/igt@gem_eio@in-flight-contexts-immediate.html> > ([i915#3070]) > * > > igt@gem_eio@unwedge-stress: > > o shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-tglb1/igt@gem_eio@unwedge-stress.html> > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb8/igt@gem_eio@unwedge-stress.html> > ([i915#3063] / [i915#3648]) > * > > igt@gem_exec_balancer@parallel-keep-submit-fence: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@gem_exec_balancer@parallel-keep-submit-fence.html> > ([i915#4525]) > * > > igt@gem_exec_capture@pi@rcs0: > > o shard-skl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl5/igt@gem_exec_capture@pi@rcs0.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl8/igt@gem_exec_capture@pi@rcs0.html> > ([i915#4547]) > * > > igt@gem_exec_fair@basic-deadline: > > o shard-skl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@gem_exec_fair@basic-deadline.html> > ([i915#2846]) > * > > igt@gem_exec_fair@basic-none-share@rcs0: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb1/igt@gem_exec_fair@basic-none-share@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb1/igt@gem_exec_fair@basic-none-share@rcs0.html> > ([i915#2842]) > * > > igt@gem_exec_fair@basic-none-solo@rcs0: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl6/igt@gem_exec_fair@basic-none-solo@rcs0.html> > ([i915#2842]) > * > > igt@gem_exec_whisper@basic-queues: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-glk5/igt@gem_exec_whisper@basic-queues.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-glk4/igt@gem_exec_whisper@basic-queues.html> > ([i915#118]) +1 similar issue > * > > igt@gem_lmem_swapping@heavy-verify-random: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@gem_lmem_swapping@heavy-verify-random.html> > ([i915#4613]) > * > > igt@gem_lmem_swapping@parallel-random-verify: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@gem_lmem_swapping@parallel-random-verify.html> > ([fdo#109271] / [i915#4613]) > * > > igt@gem_lmem_swapping@random: > > o shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@gem_lmem_swapping@random.html> > ([fdo#109271] / [i915#4613]) +2 similar issues > * > > igt@gem_lmem_swapping@verify-random: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl3/igt@gem_lmem_swapping@verify-random.html> > ([fdo#109271] / [i915#4613]) > * > > igt@gem_pwrite@basic-exhaustion: > > o shard-skl: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@gem_pwrite@basic-exhaustion.html> > ([i915#2658]) > * > > igt@gem_userptr_blits@create-destroy-unsync: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@gem_userptr_blits@create-destroy-unsync.html> > ([i915#3297]) +2 similar issues > * > > igt@gem_workarounds@suspend-resume-fd: > > o shard-kbl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html> > ([i915#180]) > * > > igt@gen9_exec_parse@batch-invalid-length: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-snb7/igt@gen9_exec_parse@batch-invalid-length.html> > ([fdo#109271]) +43 similar issues > * > > igt@gen9_exec_parse@bb-start-far: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@gen9_exec_parse@bb-start-far.html> > ([i915#2856]) > * > > igt@i915_pm_dc@dc6-dpms: > > o shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html> > ([i915#454]) > * > > igt@i915_pm_rpm@modeset-pc8-residency-stress: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html> > ([fdo#109506] / [i915#2411]) > * > > igt@i915_suspend@sysfs-reader: > > o > > shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-apl2/igt@i915_suspend@sysfs-reader.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl4/igt@i915_suspend@sysfs-reader.html> > ([i915#180]) +3 similar issues > > o > > shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-kbl2/igt@i915_suspend@sysfs-reader.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@i915_suspend@sysfs-reader.html> > ([i915#180]) +1 similar issue > > * > > igt@kms_async_flips@alternate-sync-async-flip: > > o shard-skl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl6/igt@kms_async_flips@alternate-sync-async-flip.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl4/igt@kms_async_flips@alternate-sync-async-flip.html> > ([i915#2521]) > * > > igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: > > o shard-skl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> > ([i915#3743]) +2 similar issues > * > > igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> > ([fdo#109271] / [i915#3777]) +2 similar issues > * > > igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: > > o shard-skl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> > ([i915#3763]) > * > > igt@kms_big_fb@yf-tiled-64bpp-rotate-270: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html> > ([fdo#111615]) +2 similar issues > * > > igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: > > o shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> > ([fdo#109271] / [i915#3777]) +2 similar issues > * > > igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html> > ([fdo#109271] / [i915#3886]) +2 similar issues > * > > igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html> > ([fdo#109271] / [i915#3886]) +7 similar issues > * > > igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html> > ([i915#3689] / [i915#3886]) > * > > igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: > > o shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html> > ([fdo#109271] / [i915#3886]) +11 similar issues > * > > igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs.html> > ([fdo#111615] / [i915#3689]) > * > > igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html> > ([i915#3689]) +3 similar issues > * > > igt@kms_chamelium@dp-hpd-storm-disable: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_chamelium@dp-hpd-storm-disable.html> > ([fdo#109284] / [fdo#111827]) +2 similar issues > * > > igt@kms_chamelium@hdmi-mode-timings: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl2/igt@kms_chamelium@hdmi-mode-timings.html> > ([fdo#109271] / [fdo#111827]) +10 similar issues > * > > igt@kms_color_chamelium@pipe-a-ctm-0-25: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-snb7/igt@kms_color_chamelium@pipe-a-ctm-0-25.html> > ([fdo#109271] / [fdo#111827]) > * > > igt@kms_color_chamelium@pipe-b-ctm-0-25: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@kms_color_chamelium@pipe-b-ctm-0-25.html> > ([fdo#109271] / [fdo#111827]) +1 similar issue > * > > igt@kms_color_chamelium@pipe-d-degamma: > > o shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl1/igt@kms_color_chamelium@pipe-d-degamma.html> > ([fdo#109271] / [fdo#111827]) +21 similar issues > * > > igt@kms_content_protection@lic: > > o shard-kbl: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@kms_content_protection@lic.html> > ([i915#1319]) > * > > igt@kms_content_protection@srm: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_content_protection@srm.html> > ([fdo#111828]) > * > > igt@kms_cursor_crc@pipe-a-cursor-512x170-sliding: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-512x170-sliding.html> > ([fdo#109279] / [i915#3359]) > * > > igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen: > > o shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl7/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html> > ([fdo#109271]) +280 similar issues > * > > igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding.html> > ([i915#3319]) > * > > igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen.html> > ([i915#3359]) +3 similar issues > * > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> > ([i915#4103]) > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > > o shard-skl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> > ([i915#2346]) > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > o shard-skl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> > ([i915#2346] / [i915#533]) > * > > igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> > ([i915#79]) > * > > igt@kms_flip@flip-vs-expired-vblank@b-edp1: > > o shard-skl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html> > ([i915#79]) > * > > igt@kms_flip@flip-vs-suspend-interruptible@c-edp1: > > o shard-skl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl1/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl9/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html> > ([i915#198]) > * > > igt@kms_flip@plain-flip-fb-recreate@c-edp1: > > o shard-skl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl7/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl9/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html> > ([i915#2122]) > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html> > ([i915#2587]) > * > > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs: > > o shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html> > ([fdo#109271] / [i915#2672]) > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html> > ([fdo#109271]) +162 similar issues > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html> > ([fdo#111825]) +22 similar issues > * > > igt@kms_multipipe_modeset@basic-max-pipe-crc-check: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > ([i915#1839]) > * > > igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: > > o shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> > ([fdo#109271] / [i915#533]) +2 similar issues > * > > igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb: > > o shard-skl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html> > ([i915#265]) > * > > igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> > ([i915#265]) > * > > igt@kms_plane_alpha_blend@pipe-c-alpha-basic: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> > ([fdo#108145] / [i915#265]) +1 similar issue > * > > igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max: > > o shard-skl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html> > ([fdo#108145] / [i915#265]) +1 similar issue > * > > igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html> > ([fdo#109271] / [i915#2733]) > * > > igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> > ([i915#2920]) > * > > igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1: > > o shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html> > ([fdo#109271] / [i915#658]) +6 similar issues > * > > igt@kms_psr2_sf@plane-move-sf-dmg-area-1: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl6/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html> > ([fdo#109271] / [i915#658]) +3 similar issues > * > > igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3.html> > ([fdo#109271] / [i915#658]) > * > > igt@kms_psr@psr2_dpms: > > o shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_psr@psr2_dpms.html> > ([i915#132] / [i915#3467]) +1 similar issue > * > > igt@kms_psr@psr2_sprite_mmap_gtt: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_gtt.html> > ([fdo#109441]) > * > > igt@kms_rotation_crc@bad-tiling: > > o shard-skl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl10/igt@kms_rotation_crc@bad-tiling.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl6/igt@kms_rotation_crc@bad-tiling.html> > ([i915#1982]) > * > > igt@kms_selftest@all@check_plane_state: > > o shard-apl: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl6/igt@kms_selftest@all@check_plane_state.html> > ([i915#4663]) > * > > igt@kms_sysfs_edid_timing: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@kms_sysfs_edid_timing.html> > ([IGT#2]) > * > > igt@kms_writeback@writeback-check-output: > > o > > shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl1/igt@kms_writeback@writeback-check-output.html> > ([fdo#109271] / [i915#2437]) > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@kms_writeback@writeback-check-output.html> > ([i915#2437]) > > * > > igt@nouveau_crc@pipe-d-source-outp-inactive: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@nouveau_crc@pipe-d-source-outp-inactive.html> > ([i915#2530]) > * > > igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html> > ([fdo#109271]) +38 similar issues > * > > igt@sysfs_clients@fair-3: > > o shard-skl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl6/igt@sysfs_clients@fair-3.html> > ([fdo#109271] / [i915#2994]) +4 similar issues > * > > igt@sysfs_clients@sema-25: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl6/igt@sysfs_clients@sema-25.html> > ([fdo#109271] / [i915#2994]) +4 similar issues > * > > igt@sysfs_clients@split-10: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb7/igt@sysfs_clients@split-10.html> > ([i915#2994]) > * > > igt@sysfs_clients@split-50: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@sysfs_clients@split-50.html> > ([fdo#109271] / [i915#2994]) > > > Possible fixes > > * > > igt@gem_exec_fair@basic-none-rrul@rcs0: > > o shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-glk7/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > * > > igt@gem_exec_fair@basic-throttle@rcs0: > > o shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html> > ([i915#2849]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html> > * > > igt@gem_workarounds@suspend-resume-context: > > o shard-apl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-apl2/igt@gem_workarounds@suspend-resume-context.html> > ([i915#180]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-apl8/igt@gem_workarounds@suspend-resume-context.html> > +2 similar issues > * > > igt@i915_selftest@live@hangcheck: > > o shard-snb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-snb2/igt@i915_selftest@live@hangcheck.html> > ([i915#3921]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-snb7/igt@i915_selftest@live@hangcheck.html> > * > > igt@kms_big_fb@x-tiled-32bpp-rotate-180: > > o shard-glk: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-glk7/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> > ([i915#118]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-glk5/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > > o shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> > ([i915#2346]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> > * > > igt@kms_cursor_legacy@flip-vs-cursor-legacy: > > o shard-skl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html> > ([i915#2346]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html> > * > > igt@kms_fbcon_fbt@fbc-suspend: > > o shard-kbl: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html> > ([i915#180] / [i915#636]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html> > * > > igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2: > > o shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-glk1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html> > ([i915#79]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-glk4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html> > * > > igt@kms_flip@plain-flip-fb-recreate@a-edp1: > > o shard-skl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> > ([i915#2122]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl9/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> > * > > igt@kms_flip@plain-flip-ts-check-interruptible@b-edp1: > > o shard-tglb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-tglb6/igt@kms_flip@plain-flip-ts-check-interruptible@b-edp1.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-tglb2/igt@kms_flip@plain-flip-ts-check-interruptible@b-edp1.html> > * > > igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: > > o shard-kbl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> > ([i915#180]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> > +4 similar issues > * > > igt@kms_plane_alpha_blend@pipe-a-coverage-7efc: > > o shard-skl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl9/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html> > ([fdo#108145] / [i915#265]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl10/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html> > * > > igt@kms_psr@psr2_sprite_blt: > > o shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb7/igt@kms_psr@psr2_sprite_blt.html> > ([fdo#109441]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html> > +1 similar issue > * > > igt@kms_sequence@get-forked-busy: > > o shard-snb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-snb2/igt@kms_sequence@get-forked-busy.html> > ([fdo#109271]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-snb2/igt@kms_sequence@get-forked-busy.html> > +1 similar issue > * > > igt@kms_setmode@basic: > > o shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-glk3/igt@kms_setmode@basic.html> > ([i915#31]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-glk7/igt@kms_setmode@basic.html> > * > > igt@kms_vblank@pipe-a-ts-continuation-suspend: > > o shard-kbl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> > ([i915#180] / [i915#295]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> > * > > igt@perf@polling-small-buf: > > o shard-skl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-skl7/igt@perf@polling-small-buf.html> > ([i915#1722]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-skl6/igt@perf@polling-small-buf.html> > > > Warnings > > * > > igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1: > > o shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html> > ([i915#658]) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21793/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html> > ([i915#2920]) > * > > igt@kms_psr2_su@frontbuffer-xrgb8888: > > o shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10975/shard-iclb2/igt@kms_psr2_s> > ([i915#4688]) -> [SKIP][134] ([i915#658]) > [-- Attachment #2: Type: text/html, Size: 43729 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2021-12-09 23:56 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-12-07 20:19 [Intel-gfx] [PATCH v2 0/3] Assorted fixes/tweaks to GuC support John.C.Harrison 2021-12-07 20:19 ` [Intel-gfx] [PATCH v2 1/3] drm/i915/uc: Allow platforms to have GuC but not HuC John.C.Harrison 2021-12-07 20:19 ` [Intel-gfx] [PATCH v2 2/3] drm/i915/guc: Increase GuC log size for CONFIG_DEBUG_GEM John.C.Harrison 2021-12-07 20:19 ` [Intel-gfx] [PATCH v2 3/3] drm/i915/guc: Don't go bang in GuC log if no GuC John.C.Harrison 2021-12-07 23:20 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Assorted fixes/tweaks to GuC support (rev4) Patchwork 2021-12-07 23:22 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork 2021-12-08 0:01 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork 2021-12-08 21:09 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Assorted fixes/tweaks to GuC support (rev5) Patchwork 2021-12-08 21:10 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork 2021-12-08 21:40 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2021-12-09 4:03 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2021-12-09 23:56 ` John Harrison
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox