* [Intel-gfx] [PATCH v1 0/1] drm/i915: Copy engine fuses future-proofing
@ 2022-09-12 16:19 Lucas De Marchi
2022-09-12 16:19 ` [Intel-gfx] [PATCH v1 1/1] drm/i915: Skip applying copy engine fuses Lucas De Marchi
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Lucas De Marchi @ 2022-09-12 16:19 UTC (permalink / raw)
To: intel-gfx; +Cc: Lucas De Marchi, Andrzej Hajda, dri-devel
Fix missing IP version when applying copy engine fuses.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
Lucas De Marchi (1):
drm/i915: Skip applying copy engine fuses
drivers/gpu/drm/i915/gt/intel_engine_cs.c | 4 ++++
1 file changed, 4 insertions(+)
---
base-commit: 088771790e5d121c70c358468abbebb4710eb02f
change-id: 20220912-copy-engine-526db816b088
Best regards,
--
Lucas De Marchi <lucas.demarchi@intel.com>
^ permalink raw reply [flat|nested] 10+ messages in thread* [Intel-gfx] [PATCH v1 1/1] drm/i915: Skip applying copy engine fuses 2022-09-12 16:19 [Intel-gfx] [PATCH v1 0/1] drm/i915: Copy engine fuses future-proofing Lucas De Marchi @ 2022-09-12 16:19 ` Lucas De Marchi 2022-09-12 16:59 ` Andi Shyti 2022-09-12 18:53 ` Andrzej Hajda 2022-09-13 1:03 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Copy engine fuses future-proofing Patchwork ` (2 subsequent siblings) 3 siblings, 2 replies; 10+ messages in thread From: Lucas De Marchi @ 2022-09-12 16:19 UTC (permalink / raw) To: intel-gfx; +Cc: Lucas De Marchi, Andrzej Hajda, dri-devel Support for reading the fuses to check what are the Link Copy engines was added in commit ad5f74f34201 ("drm/i915/pvc: read fuses for link copy engines"). However they were added unconditionally because the FUSE3 register is present since graphics version 10. However the bitfield with meml3 fuses only exists since graphics version 12. Moreover, Link Copy engines are currently only available in PVC. Tying additional copy engines to the meml3 fuses is not correct for other platforms. Make sure there is a check for `12.60 <= ver < 12.70`. Later platforms may extend this function later if it's needed to fuse off copy engines. Currently it's harmless as the Link Copy engines are still not exported: info->engine_mask only has BCS0 set and the register is only read for platforms that do have it. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c index 814f83b5fe59..1f7188129cd1 100644 --- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c +++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c @@ -764,6 +764,10 @@ static void engine_mask_apply_copy_fuses(struct intel_gt *gt) unsigned long meml3_mask; unsigned long quad; + if (!(GRAPHICS_VER_FULL(i915) >= IP_VER(12, 60) && + GRAPHICS_VER_FULL(i915) < IP_VER(12, 70))) + return; + meml3_mask = intel_uncore_read(gt->uncore, GEN10_MIRROR_FUSE3); meml3_mask = REG_FIELD_GET(GEN12_MEML3_EN_MASK, meml3_mask); -- b4 0.10.0-dev-df873 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH v1 1/1] drm/i915: Skip applying copy engine fuses 2022-09-12 16:19 ` [Intel-gfx] [PATCH v1 1/1] drm/i915: Skip applying copy engine fuses Lucas De Marchi @ 2022-09-12 16:59 ` Andi Shyti 2022-09-12 18:12 ` Lucas De Marchi 2022-09-12 18:53 ` Andrzej Hajda 1 sibling, 1 reply; 10+ messages in thread From: Andi Shyti @ 2022-09-12 16:59 UTC (permalink / raw) To: Lucas De Marchi; +Cc: intel-gfx, dri-devel, Andrzej Hajda Hi Lucas, On Mon, Sep 12, 2022 at 09:19:38AM -0700, Lucas De Marchi wrote: > Support for reading the fuses to check what are the Link Copy engines > was added in commit ad5f74f34201 ("drm/i915/pvc: read fuses for link > copy engines"). However they were added unconditionally because the > FUSE3 register is present since graphics version 10. > > However the bitfield with meml3 fuses only exists since graphics version > 12. Moreover, Link Copy engines are currently only available in PVC. > Tying additional copy engines to the meml3 fuses is not correct for > other platforms. > > Make sure there is a check for `12.60 <= ver < 12.70`. Later platforms > may extend this function later if it's needed to fuse off copy engines. > > Currently it's harmless as the Link Copy engines are still not exported: > info->engine_mask only has BCS0 set and the register is only read for > platforms that do have it. > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> > > diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c > index 814f83b5fe59..1f7188129cd1 100644 > --- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c > +++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c > @@ -764,6 +764,10 @@ static void engine_mask_apply_copy_fuses(struct intel_gt *gt) > unsigned long meml3_mask; > unsigned long quad; > > + if (!(GRAPHICS_VER_FULL(i915) >= IP_VER(12, 60) && > + GRAPHICS_VER_FULL(i915) < IP_VER(12, 70))) > + return; > + Isn't it easier if you wrote if (GRAPHICS_VER_FULL(i915) < IP_VER(12, 60) || GRAPHICS_VER_FULL(i915) >= IP_VER(12, 70)) return; ? You save a parenthesis and a negation '!'. Anyway, looks good: Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> Andi > meml3_mask = intel_uncore_read(gt->uncore, GEN10_MIRROR_FUSE3); > meml3_mask = REG_FIELD_GET(GEN12_MEML3_EN_MASK, meml3_mask); > > > -- > b4 0.10.0-dev-df873 ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH v1 1/1] drm/i915: Skip applying copy engine fuses 2022-09-12 16:59 ` Andi Shyti @ 2022-09-12 18:12 ` Lucas De Marchi 2022-09-12 20:12 ` Andi Shyti 0 siblings, 1 reply; 10+ messages in thread From: Lucas De Marchi @ 2022-09-12 18:12 UTC (permalink / raw) To: Andi Shyti; +Cc: intel-gfx, dri-devel, Andrzej Hajda On Mon, Sep 12, 2022 at 06:59:53PM +0200, Andi Shyti wrote: >Hi Lucas, > >On Mon, Sep 12, 2022 at 09:19:38AM -0700, Lucas De Marchi wrote: >> Support for reading the fuses to check what are the Link Copy engines >> was added in commit ad5f74f34201 ("drm/i915/pvc: read fuses for link >> copy engines"). However they were added unconditionally because the >> FUSE3 register is present since graphics version 10. >> >> However the bitfield with meml3 fuses only exists since graphics version >> 12. Moreover, Link Copy engines are currently only available in PVC. >> Tying additional copy engines to the meml3 fuses is not correct for >> other platforms. >> >> Make sure there is a check for `12.60 <= ver < 12.70`. Later platforms >> may extend this function later if it's needed to fuse off copy engines. >> >> Currently it's harmless as the Link Copy engines are still not exported: >> info->engine_mask only has BCS0 set and the register is only read for >> platforms that do have it. >> >> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> >> >> diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c >> index 814f83b5fe59..1f7188129cd1 100644 >> --- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c >> +++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c >> @@ -764,6 +764,10 @@ static void engine_mask_apply_copy_fuses(struct intel_gt *gt) >> unsigned long meml3_mask; >> unsigned long quad; >> >> + if (!(GRAPHICS_VER_FULL(i915) >= IP_VER(12, 60) && >> + GRAPHICS_VER_FULL(i915) < IP_VER(12, 70))) >> + return; >> + > >Isn't it easier if you wrote > > if (GRAPHICS_VER_FULL(i915) < IP_VER(12, 60) || > GRAPHICS_VER_FULL(i915) >= IP_VER(12, 70)) > return; > >? > >You save a parenthesis and a negation '!'. but that makes it wrong. I'd really want the range 12.60 <= version < 12.70, so it applies to PVC but is then disabled again for MTL. Depending on how this evolves for future platforms, we may change it to a feature flag or just check by platform name. For now I think this is the most future-proof option. Lucas De Marchi > >Anyway, looks good: > >Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> > >Andi > >> meml3_mask = intel_uncore_read(gt->uncore, GEN10_MIRROR_FUSE3); >> meml3_mask = REG_FIELD_GET(GEN12_MEML3_EN_MASK, meml3_mask); >> >> >> -- >> b4 0.10.0-dev-df873 ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH v1 1/1] drm/i915: Skip applying copy engine fuses 2022-09-12 18:12 ` Lucas De Marchi @ 2022-09-12 20:12 ` Andi Shyti 2022-09-12 21:11 ` Lucas De Marchi 0 siblings, 1 reply; 10+ messages in thread From: Andi Shyti @ 2022-09-12 20:12 UTC (permalink / raw) To: Lucas De Marchi; +Cc: dri-devel, intel-gfx, Andrzej Hajda Hi Lucas, On Mon, Sep 12, 2022 at 11:12:47AM -0700, Lucas De Marchi wrote: > On Mon, Sep 12, 2022 at 06:59:53PM +0200, Andi Shyti wrote: > > Hi Lucas, > > > > On Mon, Sep 12, 2022 at 09:19:38AM -0700, Lucas De Marchi wrote: > > > Support for reading the fuses to check what are the Link Copy engines > > > was added in commit ad5f74f34201 ("drm/i915/pvc: read fuses for link > > > copy engines"). However they were added unconditionally because the > > > FUSE3 register is present since graphics version 10. > > > > > > However the bitfield with meml3 fuses only exists since graphics version > > > 12. Moreover, Link Copy engines are currently only available in PVC. > > > Tying additional copy engines to the meml3 fuses is not correct for > > > other platforms. > > > > > > Make sure there is a check for `12.60 <= ver < 12.70`. Later platforms > > > may extend this function later if it's needed to fuse off copy engines. > > > > > > Currently it's harmless as the Link Copy engines are still not exported: > > > info->engine_mask only has BCS0 set and the register is only read for > > > platforms that do have it. > > > > > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> > > > > > > diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c > > > index 814f83b5fe59..1f7188129cd1 100644 > > > --- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c > > > +++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c > > > @@ -764,6 +764,10 @@ static void engine_mask_apply_copy_fuses(struct intel_gt *gt) > > > unsigned long meml3_mask; > > > unsigned long quad; > > > > > > + if (!(GRAPHICS_VER_FULL(i915) >= IP_VER(12, 60) && > > > + GRAPHICS_VER_FULL(i915) < IP_VER(12, 70))) > > > + return; > > > + > > > > Isn't it easier if you wrote > > > > if (GRAPHICS_VER_FULL(i915) < IP_VER(12, 60) || > > GRAPHICS_VER_FULL(i915) >= IP_VER(12, 70)) > > return; > > > > ? > > > > You save a parenthesis and a negation '!'. > > but that makes it wrong. I'd really want the range > 12.60 <= version < 12.70, so it applies to PVC but is then disabled > again for MTL. But it's negated... so that if it's not in the range, it's outside of the range... right? NOT(12.60 <= ver < 12.70) <--- you wrote is the same as: ver < 12.60 or ver >= 12.70 <--- I suggested and it would mean (just to see if I'm not getting confused by something and the negations do always confuse me): 12.60 12.70 return | | return ver: ------------[--------------[--------------- But it's the same, taht's why I r-b it anyway. > Depending on how this evolves for future platforms, we > may change it to a feature flag or just check by platform > name. For now I think this is the most future-proof option. yes, I got the point and I think it's fine. Andi > Lucas De Marchi > > > > > Anyway, looks good: > > > > Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> > > > > Andi > > > > > meml3_mask = intel_uncore_read(gt->uncore, GEN10_MIRROR_FUSE3); > > > meml3_mask = REG_FIELD_GET(GEN12_MEML3_EN_MASK, meml3_mask); > > > > > > > > > -- > > > b4 0.10.0-dev-df873 ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH v1 1/1] drm/i915: Skip applying copy engine fuses 2022-09-12 20:12 ` Andi Shyti @ 2022-09-12 21:11 ` Lucas De Marchi 0 siblings, 0 replies; 10+ messages in thread From: Lucas De Marchi @ 2022-09-12 21:11 UTC (permalink / raw) To: Andi Shyti; +Cc: intel-gfx, dri-devel, Andrzej Hajda On Mon, Sep 12, 2022 at 10:12:57PM +0200, Andi Shyti wrote: >Hi Lucas, > >On Mon, Sep 12, 2022 at 11:12:47AM -0700, Lucas De Marchi wrote: >> On Mon, Sep 12, 2022 at 06:59:53PM +0200, Andi Shyti wrote: >> > Hi Lucas, >> > >> > On Mon, Sep 12, 2022 at 09:19:38AM -0700, Lucas De Marchi wrote: >> > > Support for reading the fuses to check what are the Link Copy engines >> > > was added in commit ad5f74f34201 ("drm/i915/pvc: read fuses for link >> > > copy engines"). However they were added unconditionally because the >> > > FUSE3 register is present since graphics version 10. >> > > >> > > However the bitfield with meml3 fuses only exists since graphics version >> > > 12. Moreover, Link Copy engines are currently only available in PVC. >> > > Tying additional copy engines to the meml3 fuses is not correct for >> > > other platforms. >> > > >> > > Make sure there is a check for `12.60 <= ver < 12.70`. Later platforms >> > > may extend this function later if it's needed to fuse off copy engines. >> > > >> > > Currently it's harmless as the Link Copy engines are still not exported: >> > > info->engine_mask only has BCS0 set and the register is only read for >> > > platforms that do have it. >> > > >> > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> >> > > >> > > diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c >> > > index 814f83b5fe59..1f7188129cd1 100644 >> > > --- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c >> > > +++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c >> > > @@ -764,6 +764,10 @@ static void engine_mask_apply_copy_fuses(struct intel_gt *gt) >> > > unsigned long meml3_mask; >> > > unsigned long quad; >> > > >> > > + if (!(GRAPHICS_VER_FULL(i915) >= IP_VER(12, 60) && >> > > + GRAPHICS_VER_FULL(i915) < IP_VER(12, 70))) >> > > + return; >> > > + >> > >> > Isn't it easier if you wrote >> > >> > if (GRAPHICS_VER_FULL(i915) < IP_VER(12, 60) || >> > GRAPHICS_VER_FULL(i915) >= IP_VER(12, 70)) >> > return; >> > >> > ? >> > >> > You save a parenthesis and a negation '!'. >> >> but that makes it wrong. I'd really want the range >> 12.60 <= version < 12.70, so it applies to PVC but is then disabled >> again for MTL. > >But it's negated... so that if it's not in the range, it's >outside of the range... right? > > NOT(12.60 <= ver < 12.70) <--- you wrote > >is the same as: > > ver < 12.60 or ver >= 12.70 <--- I suggested > >and it would mean (just to see if I'm not getting confused by >something and the negations do always confuse me): > > > 12.60 12.70 > return | | return > ver: ------------[--------------[--------------- > > >But it's the same, taht's why I r-b it anyway. yeah, when I read your reply I missed the fact you changed the comparisons <=, > thanks Lucas De Marchi ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH v1 1/1] drm/i915: Skip applying copy engine fuses 2022-09-12 16:19 ` [Intel-gfx] [PATCH v1 1/1] drm/i915: Skip applying copy engine fuses Lucas De Marchi 2022-09-12 16:59 ` Andi Shyti @ 2022-09-12 18:53 ` Andrzej Hajda 1 sibling, 0 replies; 10+ messages in thread From: Andrzej Hajda @ 2022-09-12 18:53 UTC (permalink / raw) To: Lucas De Marchi, intel-gfx; +Cc: dri-devel On 12.09.2022 18:19, Lucas De Marchi wrote: > Support for reading the fuses to check what are the Link Copy engines > was added in commit ad5f74f34201 ("drm/i915/pvc: read fuses for link > copy engines"). However they were added unconditionally because the > FUSE3 register is present since graphics version 10. > > However the bitfield with meml3 fuses only exists since graphics version > 12. Moreover, Link Copy engines are currently only available in PVC. > Tying additional copy engines to the meml3 fuses is not correct for > other platforms. > > Make sure there is a check for `12.60 <= ver < 12.70`. Later platforms > may extend this function later if it's needed to fuse off copy engines. > > Currently it's harmless as the Link Copy engines are still not exported: > info->engine_mask only has BCS0 set and the register is only read for > platforms that do have it. > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> Regards Andrzej > > diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c > index 814f83b5fe59..1f7188129cd1 100644 > --- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c > +++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c > @@ -764,6 +764,10 @@ static void engine_mask_apply_copy_fuses(struct intel_gt *gt) > unsigned long meml3_mask; > unsigned long quad; > > + if (!(GRAPHICS_VER_FULL(i915) >= IP_VER(12, 60) && > + GRAPHICS_VER_FULL(i915) < IP_VER(12, 70))) > + return; > + > meml3_mask = intel_uncore_read(gt->uncore, GEN10_MIRROR_FUSE3); > meml3_mask = REG_FIELD_GET(GEN12_MEML3_EN_MASK, meml3_mask); > > ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Copy engine fuses future-proofing 2022-09-12 16:19 [Intel-gfx] [PATCH v1 0/1] drm/i915: Copy engine fuses future-proofing Lucas De Marchi 2022-09-12 16:19 ` [Intel-gfx] [PATCH v1 1/1] drm/i915: Skip applying copy engine fuses Lucas De Marchi @ 2022-09-13 1:03 ` Patchwork 2022-09-13 9:26 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Copy engine fuses future-proofing (rev2) Patchwork 2022-09-13 18:49 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2022-09-13 1:03 UTC (permalink / raw) To: Lucas De Marchi; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 10629 bytes --] == Series Details == Series: drm/i915: Copy engine fuses future-proofing URL : https://patchwork.freedesktop.org/series/108444/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12124 -> Patchwork_108444v1 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_108444v1 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_108444v1, 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_108444v1/index.html Participating hosts (41 -> 40) ------------------------------ Additional (1): fi-hsw-4770 Missing (2): fi-ctg-p8600 fi-bdw-samus Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_108444v1: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@mman: - fi-rkl-guc: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12124/fi-rkl-guc/igt@i915_selftest@live@mman.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-rkl-guc/igt@i915_selftest@live@mman.html Known issues ------------ Here are the changes found in Patchwork_108444v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - fi-rkl-11600: NOTRUN -> [FAIL][3] ([fdo#103375]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_pm_backlight@basic-brightness: - fi-hsw-4770: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#3012]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html * igt@i915_selftest@live@gem: - fi-blb-e6850: NOTRUN -> [DMESG-FAIL][5] ([i915#4528]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-blb-e6850/igt@i915_selftest@live@gem.html * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: NOTRUN -> [INCOMPLETE][6] ([i915#4785]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html - bat-dg1-5: NOTRUN -> [DMESG-FAIL][7] ([i915#4494] / [i915#4957]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/bat-dg1-5/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@late_gt_pm: - fi-bsw-nick: [PASS][8] -> [DMESG-FAIL][9] ([i915#3428] / [i915#6217]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12124/fi-bsw-nick/igt@i915_selftest@live@late_gt_pm.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-bsw-nick/igt@i915_selftest@live@late_gt_pm.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][10] ([fdo#109271]) +9 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-hsw-g3258: NOTRUN -> [SKIP][11] ([fdo#109271] / [fdo#111827]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-hsw-g3258/igt@kms_chamelium@common-hpd-after-suspend.html - fi-bsw-kefka: NOTRUN -> [SKIP][12] ([fdo#109271] / [fdo#111827]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-bsw-kefka/igt@kms_chamelium@common-hpd-after-suspend.html - fi-rkl-11600: NOTRUN -> [SKIP][13] ([fdo#111827]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-rkl-11600/igt@kms_chamelium@common-hpd-after-suspend.html - bat-dg1-5: NOTRUN -> [SKIP][14] ([fdo#111827]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/bat-dg1-5/igt@kms_chamelium@common-hpd-after-suspend.html - fi-pnv-d510: NOTRUN -> [SKIP][15] ([fdo#109271]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-pnv-d510/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@dp-crc-fast: - fi-hsw-4770: NOTRUN -> [SKIP][16] ([fdo#109271] / [fdo#111827]) +7 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-hsw-4770/igt@kms_chamelium@dp-crc-fast.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-dg1-5: NOTRUN -> [SKIP][17] ([i915#4078]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/bat-dg1-5/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_psr@sprite_plane_onoff: - fi-hsw-4770: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#1072]) +3 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html * igt@runner@aborted: - fi-hsw-4770: NOTRUN -> [FAIL][19] ([fdo#109271] / [i915#4312] / [i915#5594] / [i915#6246]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-hsw-4770/igt@runner@aborted.html - fi-bsw-nick: NOTRUN -> [FAIL][20] ([fdo#109271] / [i915#4312]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-bsw-nick/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - {bat-rplp-1}: [DMESG-WARN][21] ([i915#2867]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12124/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@gem: - fi-pnv-d510: [DMESG-FAIL][23] ([i915#4528]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12124/fi-pnv-d510/igt@i915_selftest@live@gem.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-pnv-d510/igt@i915_selftest@live@gem.html * igt@i915_selftest@live@gt_engines: - bat-dg1-5: [INCOMPLETE][25] ([i915#4418]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12124/bat-dg1-5/igt@i915_selftest@live@gt_engines.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/bat-dg1-5/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@hangcheck: - fi-hsw-g3258: [INCOMPLETE][27] ([i915#3303] / [i915#4785]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12124/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@mman: - {bat-rpls-2}: [INCOMPLETE][29] -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12124/bat-rpls-2/igt@i915_selftest@live@mman.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/bat-rpls-2/igt@i915_selftest@live@mman.html * igt@i915_selftest@live@requests: - fi-blb-e6850: [DMESG-FAIL][31] ([i915#4528]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12124/fi-blb-e6850/igt@i915_selftest@live@requests.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-blb-e6850/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - fi-bsw-kefka: [INCOMPLETE][33] -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12124/fi-bsw-kefka/igt@i915_selftest@live@reset.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-bsw-kefka/igt@i915_selftest@live@reset.html * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: [INCOMPLETE][35] ([i915#5982]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12124/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html - {bat-rpls-2}: [FAIL][37] ([i915#6559]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12124/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303 [i915#3428]: https://gitlab.freedesktop.org/drm/intel/issues/3428 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#5594]: https://gitlab.freedesktop.org/drm/intel/issues/5594 [i915#5982]: https://gitlab.freedesktop.org/drm/intel/issues/5982 [i915#6217]: https://gitlab.freedesktop.org/drm/intel/issues/6217 [i915#6246]: https://gitlab.freedesktop.org/drm/intel/issues/6246 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6559]: https://gitlab.freedesktop.org/drm/intel/issues/6559 Build changes ------------- * Linux: CI_DRM_12124 -> Patchwork_108444v1 CI-20190529: 20190529 CI_DRM_12124: 6b64355bf00cf612fef129009e6443471f946265 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6652: 79ebd88d01d679ffe9f6f24108c6ac4dc3f04ddd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_108444v1: 6b64355bf00cf612fef129009e6443471f946265 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits bbaed0fce370 drm/i915: Skip applying copy engine fuses == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v1/index.html [-- Attachment #2: Type: text/html, Size: 12853 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Copy engine fuses future-proofing (rev2) 2022-09-12 16:19 [Intel-gfx] [PATCH v1 0/1] drm/i915: Copy engine fuses future-proofing Lucas De Marchi 2022-09-12 16:19 ` [Intel-gfx] [PATCH v1 1/1] drm/i915: Skip applying copy engine fuses Lucas De Marchi 2022-09-13 1:03 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Copy engine fuses future-proofing Patchwork @ 2022-09-13 9:26 ` Patchwork 2022-09-13 18:49 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2022-09-13 9:26 UTC (permalink / raw) To: Lucas De Marchi; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5743 bytes --] == Series Details == Series: drm/i915: Copy engine fuses future-proofing (rev2) URL : https://patchwork.freedesktop.org/series/108444/ State : success == Summary == CI Bug Log - changes from CI_DRM_12125 -> Patchwork_108444v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/index.html Participating hosts (35 -> 34) ------------------------------ Additional (2): fi-hsw-4770 fi-pnv-d510 Missing (3): fi-ctg-p8600 fi-rkl-11600 fi-bdw-samus Known issues ------------ Here are the changes found in Patchwork_108444v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_backlight@basic-brightness: - fi-hsw-4770: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#3012]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html * igt@i915_selftest@live@execlists: - fi-bdw-gvtdvm: [PASS][2] -> [INCOMPLETE][3] ([i915#2940]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/fi-bdw-gvtdvm/igt@i915_selftest@live@execlists.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/fi-bdw-gvtdvm/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gem: - fi-pnv-d510: NOTRUN -> [DMESG-FAIL][4] ([i915#4528]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/fi-pnv-d510/igt@i915_selftest@live@gem.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][5] ([fdo#109271]) +9 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_chamelium@dp-crc-fast: - fi-hsw-4770: NOTRUN -> [SKIP][6] ([fdo#109271] / [fdo#111827]) +8 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/fi-hsw-4770/igt@kms_chamelium@dp-crc-fast.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][7] ([fdo#109271]) +42 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/fi-pnv-d510/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - fi-hsw-4770: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1072]) +3 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html * igt@runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][9] ([fdo#109271] / [i915#2403] / [i915#4312]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/fi-pnv-d510/igt@runner@aborted.html - fi-bdw-gvtdvm: NOTRUN -> [FAIL][10] ([i915#4312]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/fi-bdw-gvtdvm/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live@memory_region: - {bat-adln-1}: [DMESG-FAIL][11] -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/bat-adln-1/igt@i915_selftest@live@memory_region.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/bat-adln-1/igt@i915_selftest@live@memory_region.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size: - fi-bsw-kefka: [FAIL][13] ([i915#6298]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html #### Warnings #### * igt@i915_selftest@live@hangcheck: - bat-dg1-5: [DMESG-FAIL][15] ([i915#4957]) -> [DMESG-FAIL][16] ([i915#4494] / [i915#4957]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/bat-dg1-5/igt@i915_selftest@live@hangcheck.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/bat-dg1-5/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403 [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 Build changes ------------- * Linux: CI_DRM_12125 -> Patchwork_108444v2 CI-20190529: 20190529 CI_DRM_12125: 970ca3bc6dfba186a7e223e0c30fd4cb9aacae33 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6653: 4f927248ebbf11f03f4c1ea2254f011e7575322f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_108444v2: 970ca3bc6dfba186a7e223e0c30fd4cb9aacae33 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 83000b65242f drm/i915: Skip applying copy engine fuses == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/index.html [-- Attachment #2: Type: text/html, Size: 7040 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Copy engine fuses future-proofing (rev2) 2022-09-12 16:19 [Intel-gfx] [PATCH v1 0/1] drm/i915: Copy engine fuses future-proofing Lucas De Marchi ` (2 preceding siblings ...) 2022-09-13 9:26 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Copy engine fuses future-proofing (rev2) Patchwork @ 2022-09-13 18:49 ` Patchwork 3 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2022-09-13 18:49 UTC (permalink / raw) To: Lucas De Marchi; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 22246 bytes --] == Series Details == Series: drm/i915: Copy engine fuses future-proofing (rev2) URL : https://patchwork.freedesktop.org/series/108444/ State : success == Summary == CI Bug Log - changes from CI_DRM_12125_full -> Patchwork_108444v2_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 10) ------------------------------ Missing (2): shard-rkl shard-dg1 Known issues ------------ Here are the changes found in Patchwork_108444v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_balancer@parallel-out-fence: - shard-iclb: [PASS][1] -> [SKIP][2] ([i915#4525]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb6/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][3] ([i915#2842]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [PASS][4] -> [SKIP][5] ([i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-tglb3/igt@gem_huc_copy@huc-copy.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb7/igt@gem_huc_copy@huc-copy.html * igt@gem_softpin@evict-single-offset: - shard-tglb: [PASS][6] -> [FAIL][7] ([i915#4171]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-tglb6/igt@gem_softpin@evict-single-offset.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb7/igt@gem_softpin@evict-single-offset.html * igt@gen7_exec_parse@batch-without-end: - shard-tglb: NOTRUN -> [SKIP][8] ([fdo#109289]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb2/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][9] -> [DMESG-WARN][10] ([i915#5566] / [i915#716]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-apl1/igt@gen9_exec_parse@allowed-single.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl6/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc9-dpms: - shard-iclb: [PASS][11] -> [SKIP][12] ([i915#4281]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-iclb8/igt@i915_pm_dc@dc9-dpms.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-tglb: [PASS][13] -> [INCOMPLETE][14] ([i915#2411] / [i915#6598]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-tglb2/igt@i915_pm_rpm@system-suspend-execbuf.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb5/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglb: NOTRUN -> [SKIP][15] ([i915#1769]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#3886]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-basic-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][17] ([fdo#111615] / [i915#3689]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb2/igt@kms_ccs@pipe-c-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc: - shard-tglb: NOTRUN -> [SKIP][18] ([i915#6095]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb2/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][19] ([i915#3689]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb2/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html * igt@kms_chamelium@dp-crc-multiple: - shard-apl: NOTRUN -> [SKIP][20] ([fdo#109271] / [fdo#111827]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl6/igt@kms_chamelium@dp-crc-multiple.html * igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1: - shard-apl: [PASS][21] -> [DMESG-WARN][22] ([i915#180]) +3 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-apl8/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl3/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][23] ([fdo#109271]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-glk7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [PASS][24] -> [INCOMPLETE][25] ([i915#180] / [i915#1982] / [i915#4939] / [i915#6598]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-tglb: NOTRUN -> [SKIP][26] ([fdo#109274] / [fdo#111825] / [i915#3637]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][27] ([i915#2587] / [i915#2672]) +4 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][28] ([i915#3555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][29] ([i915#2672] / [i915#3555]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][30] ([fdo#109280] / [fdo#111825]) +2 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: - shard-apl: NOTRUN -> [FAIL][31] ([i915#265]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-a-dp-1: - shard-apl: NOTRUN -> [SKIP][32] ([fdo#109271]) +32 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-a-dp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-d-edp-1: - shard-tglb: NOTRUN -> [SKIP][33] ([i915#5176]) +3 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-d-edp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-tglb: NOTRUN -> [SKIP][34] ([i915#2920]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr@psr2_cursor_blt: - shard-tglb: NOTRUN -> [FAIL][35] ([i915#132] / [i915#3467]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb2/igt@kms_psr@psr2_cursor_blt.html * igt@kms_psr@psr2_primary_blt: - shard-iclb: [PASS][36] -> [SKIP][37] ([fdo#109441]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-iclb2/igt@kms_psr@psr2_primary_blt.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb5/igt@kms_psr@psr2_primary_blt.html * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: - shard-tglb: NOTRUN -> [SKIP][38] ([i915#2530]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb2/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html * igt@sysfs_clients@split-50: - shard-tglb: NOTRUN -> [SKIP][39] ([i915#2994]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb2/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglb: [FAIL][40] ([i915#6268]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-tglb5/igt@gem_ctx_exec@basic-nohangcheck.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb6/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@unwedge-stress: - shard-iclb: [TIMEOUT][42] ([i915#3070]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-iclb6/igt@gem_eio@unwedge-stress.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel: - shard-iclb: [SKIP][44] ([i915#4525]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-iclb6/igt@gem_exec_balancer@parallel.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][46] ([i915#2842]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - {shard-tglu}: [FAIL][48] ([i915#3825]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-tglu-2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglu-1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rps@engine-order: - shard-apl: [FAIL][50] ([i915#6537]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-apl4/igt@i915_pm_rps@engine-order.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl2/igt@i915_pm_rps@engine-order.html * igt@i915_suspend@fence-restore-untiled: - shard-apl: [DMESG-WARN][52] ([i915#180]) -> [PASS][53] [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-apl3/igt@i915_suspend@fence-restore-untiled.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl6/igt@i915_suspend@fence-restore-untiled.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [FAIL][54] ([i915#2346]) -> [PASS][55] [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][56] ([i915#5235]) -> [PASS][57] +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-iclb: [SKIP][58] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][59] [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-iclb3/igt@kms_psr2_su@frontbuffer-xrgb8888.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [SKIP][60] ([fdo#109441]) -> [PASS][61] +3 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-iclb7/igt@kms_psr@psr2_sprite_plane_move.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html * igt@perf_pmu@semaphore-busy@bcs0: - shard-tglb: [INCOMPLETE][62] -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-tglb6/igt@perf_pmu@semaphore-busy@bcs0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-tglb2/igt@perf_pmu@semaphore-busy@bcs0.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][64] ([i915#6117]) -> [SKIP][65] ([i915#4525]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-iclb4/igt@gem_exec_balancer@parallel-ordering.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-iclb: [SKIP][66] ([i915#2920]) -> [SKIP][67] ([i915#658]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-iclb6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@runner@aborted: - shard-apl: ([FAIL][68], [FAIL][69], [FAIL][70]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599]) -> ([FAIL][71], [FAIL][72], [FAIL][73], [FAIL][74], [FAIL][75], [FAIL][76], [FAIL][77], [FAIL][78]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-apl3/igt@runner@aborted.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-apl7/igt@runner@aborted.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12125/shard-apl7/igt@runner@aborted.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl3/igt@runner@aborted.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl4/igt@runner@aborted.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl6/igt@runner@aborted.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl6/igt@runner@aborted.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl3/igt@runner@aborted.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl8/igt@runner@aborted.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl6/igt@runner@aborted.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/shard-apl4/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6598]: https://gitlab.freedesktop.org/drm/intel/issues/6598 [i915#6599]: https://gitlab.freedesktop.org/drm/intel/issues/6599 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 Build changes ------------- * Linux: CI_DRM_12125 -> Patchwork_108444v2 CI-20190529: 20190529 CI_DRM_12125: 970ca3bc6dfba186a7e223e0c30fd4cb9aacae33 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6653: 4f927248ebbf11f03f4c1ea2254f011e7575322f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_108444v2: 970ca3bc6dfba186a7e223e0c30fd4cb9aacae33 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_108444v2/index.html [-- Attachment #2: Type: text/html, Size: 23944 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2022-09-13 18:49 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-09-12 16:19 [Intel-gfx] [PATCH v1 0/1] drm/i915: Copy engine fuses future-proofing Lucas De Marchi 2022-09-12 16:19 ` [Intel-gfx] [PATCH v1 1/1] drm/i915: Skip applying copy engine fuses Lucas De Marchi 2022-09-12 16:59 ` Andi Shyti 2022-09-12 18:12 ` Lucas De Marchi 2022-09-12 20:12 ` Andi Shyti 2022-09-12 21:11 ` Lucas De Marchi 2022-09-12 18:53 ` Andrzej Hajda 2022-09-13 1:03 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Copy engine fuses future-proofing Patchwork 2022-09-13 9:26 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Copy engine fuses future-proofing (rev2) Patchwork 2022-09-13 18:49 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox