* [PATCH v3 1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" @ 2019-11-12 22:47 ` Matt Roper 0 siblings, 0 replies; 26+ messages in thread From: Matt Roper @ 2019-11-12 22:47 UTC (permalink / raw) To: intel-gfx; +Cc: Lucas De Marchi, Francisco Jerez This reverts commit f4071997f1de016780ec6b79c63d90cd5886ee83. These extra EHL entries won't behave as expected without a bit more work on the kernel side so let's drop them until that kernel work has had a chance to land. Userspace trying to use these new entries won't get the advantage of the new functionality these entries are meant to provide, but at least it won't misbehave. When we do add these back in the future, we'll probably want to explicitly use separate tables for ICL and EHL so that userspace software that mistakenly uses these entries (which are undefined on ICL) sees the same behavior it sees with all the other undefined entries. Cc: Francisco Jerez <francisco.jerez.plata@intel.com> Cc: Jon Bloomfield <jon.bloomfield@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Signed-off-by: Matt Roper <matthew.d.roper@intel.com> --- drivers/gpu/drm/i915/gt/intel_mocs.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c b/drivers/gpu/drm/i915/gt/intel_mocs.c index 6e881c735b20..06e2adbf27be 100644 --- a/drivers/gpu/drm/i915/gt/intel_mocs.c +++ b/drivers/gpu/drm/i915/gt/intel_mocs.c @@ -200,14 +200,6 @@ static const struct drm_i915_mocs_entry broxton_mocs_table[] = { MOCS_ENTRY(15, \ LE_3_WB | LE_TC_1_LLC | LE_LRUM(2) | LE_AOM(1), \ L3_3_WB), \ - /* Bypass LLC - Uncached (EHL+) */ \ - MOCS_ENTRY(16, \ - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), \ - L3_1_UC), \ - /* Bypass LLC - L3 (Read-Only) (EHL+) */ \ - MOCS_ENTRY(17, \ - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), \ - L3_3_WB), \ /* Self-Snoop - L3 + LLC */ \ MOCS_ENTRY(18, \ LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_SSE(3), \ -- 2.21.0 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 26+ messages in thread
* [Intel-gfx] [PATCH v3 1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" @ 2019-11-12 22:47 ` Matt Roper 0 siblings, 0 replies; 26+ messages in thread From: Matt Roper @ 2019-11-12 22:47 UTC (permalink / raw) To: intel-gfx; +Cc: Lucas De Marchi, Francisco Jerez This reverts commit f4071997f1de016780ec6b79c63d90cd5886ee83. These extra EHL entries won't behave as expected without a bit more work on the kernel side so let's drop them until that kernel work has had a chance to land. Userspace trying to use these new entries won't get the advantage of the new functionality these entries are meant to provide, but at least it won't misbehave. When we do add these back in the future, we'll probably want to explicitly use separate tables for ICL and EHL so that userspace software that mistakenly uses these entries (which are undefined on ICL) sees the same behavior it sees with all the other undefined entries. Cc: Francisco Jerez <francisco.jerez.plata@intel.com> Cc: Jon Bloomfield <jon.bloomfield@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Signed-off-by: Matt Roper <matthew.d.roper@intel.com> --- drivers/gpu/drm/i915/gt/intel_mocs.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c b/drivers/gpu/drm/i915/gt/intel_mocs.c index 6e881c735b20..06e2adbf27be 100644 --- a/drivers/gpu/drm/i915/gt/intel_mocs.c +++ b/drivers/gpu/drm/i915/gt/intel_mocs.c @@ -200,14 +200,6 @@ static const struct drm_i915_mocs_entry broxton_mocs_table[] = { MOCS_ENTRY(15, \ LE_3_WB | LE_TC_1_LLC | LE_LRUM(2) | LE_AOM(1), \ L3_3_WB), \ - /* Bypass LLC - Uncached (EHL+) */ \ - MOCS_ENTRY(16, \ - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), \ - L3_1_UC), \ - /* Bypass LLC - L3 (Read-Only) (EHL+) */ \ - MOCS_ENTRY(17, \ - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), \ - L3_3_WB), \ /* Self-Snoop - L3 + LLC */ \ MOCS_ENTRY(18, \ LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_SSE(3), \ -- 2.21.0 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 26+ messages in thread
* [PATCH v3 2/2] drm/i915/tgl: MOCS table update @ 2019-11-12 22:47 ` Matt Roper 0 siblings, 0 replies; 26+ messages in thread From: Matt Roper @ 2019-11-12 22:47 UTC (permalink / raw) To: intel-gfx; +Cc: Lucas De Marchi, Francisco Jerez The bspec was just updated with a minor correction to entry 61 (it shouldn't have had the SCF bit set). v2: - Add a MOCS_ENTRY_UNUSED() and use it to declare the explicitly-reserved MOCS entries. (Lucas) - Move the warning suppression from the Makefile to a #pragma that only affects the TGL table. (Lucas) v3: - Entries 16 and 17 are identical to ICL now, so no need to explicitly adjust them (or mess with compiler warning overrides). Bspec: 45101 Fixes: 2ddf992179c4 ("drm/i915/tgl: Define MOCS entries for Tigerlake") Cc: Tomasz Lis <tomasz.lis@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Cc: Francisco Jerez <francisco.jerez.plata@intel.com> Cc: Jon Bloomfield <jon.bloomfield@intel.com> Signed-off-by: Matt Roper <matthew.d.roper@intel.com> --- drivers/gpu/drm/i915/gt/intel_mocs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c b/drivers/gpu/drm/i915/gt/intel_mocs.c index 06e2adbf27be..2b977991b785 100644 --- a/drivers/gpu/drm/i915/gt/intel_mocs.c +++ b/drivers/gpu/drm/i915/gt/intel_mocs.c @@ -263,7 +263,7 @@ static const struct drm_i915_mocs_entry tigerlake_mocs_table[] = { L3_1_UC), /* HW Special Case (Displayable) */ MOCS_ENTRY(61, - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), + LE_1_UC | LE_TC_1_LLC, L3_3_WB), }; -- 2.21.0 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 26+ messages in thread
* [Intel-gfx] [PATCH v3 2/2] drm/i915/tgl: MOCS table update @ 2019-11-12 22:47 ` Matt Roper 0 siblings, 0 replies; 26+ messages in thread From: Matt Roper @ 2019-11-12 22:47 UTC (permalink / raw) To: intel-gfx; +Cc: Lucas De Marchi, Francisco Jerez The bspec was just updated with a minor correction to entry 61 (it shouldn't have had the SCF bit set). v2: - Add a MOCS_ENTRY_UNUSED() and use it to declare the explicitly-reserved MOCS entries. (Lucas) - Move the warning suppression from the Makefile to a #pragma that only affects the TGL table. (Lucas) v3: - Entries 16 and 17 are identical to ICL now, so no need to explicitly adjust them (or mess with compiler warning overrides). Bspec: 45101 Fixes: 2ddf992179c4 ("drm/i915/tgl: Define MOCS entries for Tigerlake") Cc: Tomasz Lis <tomasz.lis@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Cc: Francisco Jerez <francisco.jerez.plata@intel.com> Cc: Jon Bloomfield <jon.bloomfield@intel.com> Signed-off-by: Matt Roper <matthew.d.roper@intel.com> --- drivers/gpu/drm/i915/gt/intel_mocs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c b/drivers/gpu/drm/i915/gt/intel_mocs.c index 06e2adbf27be..2b977991b785 100644 --- a/drivers/gpu/drm/i915/gt/intel_mocs.c +++ b/drivers/gpu/drm/i915/gt/intel_mocs.c @@ -263,7 +263,7 @@ static const struct drm_i915_mocs_entry tigerlake_mocs_table[] = { L3_1_UC), /* HW Special Case (Displayable) */ MOCS_ENTRY(61, - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), + LE_1_UC | LE_TC_1_LLC, L3_3_WB), }; -- 2.21.0 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 26+ messages in thread
* Re: [PATCH v3 2/2] drm/i915/tgl: MOCS table update @ 2019-11-12 23:20 ` Francisco Jerez 0 siblings, 0 replies; 26+ messages in thread From: Francisco Jerez @ 2019-11-12 23:20 UTC (permalink / raw) To: Matt Roper, intel-gfx; +Cc: Lucas De Marchi [-- Attachment #1.1.1: Type: text/plain, Size: 1745 bytes --] Matt Roper <matthew.d.roper@intel.com> writes: > The bspec was just updated with a minor correction to entry 61 (it > shouldn't have had the SCF bit set). > > v2: > - Add a MOCS_ENTRY_UNUSED() and use it to declare the > explicitly-reserved MOCS entries. (Lucas) > - Move the warning suppression from the Makefile to a #pragma that only > affects the TGL table. (Lucas) > > v3: > - Entries 16 and 17 are identical to ICL now, so no need to explicitly > adjust them (or mess with compiler warning overrides). > > Bspec: 45101 > Fixes: 2ddf992179c4 ("drm/i915/tgl: Define MOCS entries for Tigerlake") > Cc: Tomasz Lis <tomasz.lis@intel.com> > Cc: Lucas De Marchi <lucas.demarchi@intel.com> > Cc: Francisco Jerez <francisco.jerez.plata@intel.com> > Cc: Jon Bloomfield <jon.bloomfield@intel.com> > Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Reviewed-by: Francisco Jerez <currojerez@riseup.net> > --- > drivers/gpu/drm/i915/gt/intel_mocs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c b/drivers/gpu/drm/i915/gt/intel_mocs.c > index 06e2adbf27be..2b977991b785 100644 > --- a/drivers/gpu/drm/i915/gt/intel_mocs.c > +++ b/drivers/gpu/drm/i915/gt/intel_mocs.c > @@ -263,7 +263,7 @@ static const struct drm_i915_mocs_entry tigerlake_mocs_table[] = { > L3_1_UC), > /* HW Special Case (Displayable) */ > MOCS_ENTRY(61, > - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), > + LE_1_UC | LE_TC_1_LLC, > L3_3_WB), > }; > > -- > 2.21.0 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/intel-gfx [-- Attachment #1.2: signature.asc --] [-- Type: application/pgp-signature, Size: 227 bytes --] [-- Attachment #2: Type: text/plain, Size: 159 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [Intel-gfx] [PATCH v3 2/2] drm/i915/tgl: MOCS table update @ 2019-11-12 23:20 ` Francisco Jerez 0 siblings, 0 replies; 26+ messages in thread From: Francisco Jerez @ 2019-11-12 23:20 UTC (permalink / raw) To: Matt Roper, intel-gfx; +Cc: Lucas De Marchi [-- Attachment #1.1.1: Type: text/plain, Size: 1745 bytes --] Matt Roper <matthew.d.roper@intel.com> writes: > The bspec was just updated with a minor correction to entry 61 (it > shouldn't have had the SCF bit set). > > v2: > - Add a MOCS_ENTRY_UNUSED() and use it to declare the > explicitly-reserved MOCS entries. (Lucas) > - Move the warning suppression from the Makefile to a #pragma that only > affects the TGL table. (Lucas) > > v3: > - Entries 16 and 17 are identical to ICL now, so no need to explicitly > adjust them (or mess with compiler warning overrides). > > Bspec: 45101 > Fixes: 2ddf992179c4 ("drm/i915/tgl: Define MOCS entries for Tigerlake") > Cc: Tomasz Lis <tomasz.lis@intel.com> > Cc: Lucas De Marchi <lucas.demarchi@intel.com> > Cc: Francisco Jerez <francisco.jerez.plata@intel.com> > Cc: Jon Bloomfield <jon.bloomfield@intel.com> > Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Reviewed-by: Francisco Jerez <currojerez@riseup.net> > --- > drivers/gpu/drm/i915/gt/intel_mocs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c b/drivers/gpu/drm/i915/gt/intel_mocs.c > index 06e2adbf27be..2b977991b785 100644 > --- a/drivers/gpu/drm/i915/gt/intel_mocs.c > +++ b/drivers/gpu/drm/i915/gt/intel_mocs.c > @@ -263,7 +263,7 @@ static const struct drm_i915_mocs_entry tigerlake_mocs_table[] = { > L3_1_UC), > /* HW Special Case (Displayable) */ > MOCS_ENTRY(61, > - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), > + LE_1_UC | LE_TC_1_LLC, > L3_3_WB), > }; > > -- > 2.21.0 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/intel-gfx [-- Attachment #1.2: signature.asc --] [-- Type: application/pgp-signature, Size: 227 bytes --] [-- Attachment #2: Type: text/plain, Size: 159 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v3 2/2] drm/i915/tgl: MOCS table update @ 2019-11-13 1:09 ` Lucas De Marchi 0 siblings, 0 replies; 26+ messages in thread From: Lucas De Marchi @ 2019-11-13 1:09 UTC (permalink / raw) To: Matt Roper; +Cc: intel-gfx, Francisco Jerez On Tue, Nov 12, 2019 at 02:47:57PM -0800, Matt Roper wrote: >The bspec was just updated with a minor correction to entry 61 (it >shouldn't have had the SCF bit set). > >v2: > - Add a MOCS_ENTRY_UNUSED() and use it to declare the > explicitly-reserved MOCS entries. (Lucas) > - Move the warning suppression from the Makefile to a #pragma that only > affects the TGL table. (Lucas) > >v3: > - Entries 16 and 17 are identical to ICL now, so no need to explicitly > adjust them (or mess with compiler warning overrides). > >Bspec: 45101 >Fixes: 2ddf992179c4 ("drm/i915/tgl: Define MOCS entries for Tigerlake") >Cc: Tomasz Lis <tomasz.lis@intel.com> >Cc: Lucas De Marchi <lucas.demarchi@intel.com> >Cc: Francisco Jerez <francisco.jerez.plata@intel.com> >Cc: Jon Bloomfield <jon.bloomfield@intel.com> >Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Lucas De Marchi >--- > drivers/gpu/drm/i915/gt/intel_mocs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c b/drivers/gpu/drm/i915/gt/intel_mocs.c >index 06e2adbf27be..2b977991b785 100644 >--- a/drivers/gpu/drm/i915/gt/intel_mocs.c >+++ b/drivers/gpu/drm/i915/gt/intel_mocs.c >@@ -263,7 +263,7 @@ static const struct drm_i915_mocs_entry tigerlake_mocs_table[] = { > L3_1_UC), > /* HW Special Case (Displayable) */ > MOCS_ENTRY(61, >- LE_1_UC | LE_TC_1_LLC | LE_SCF(1), >+ LE_1_UC | LE_TC_1_LLC, > L3_3_WB), > }; > >-- >2.21.0 > _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [Intel-gfx] [PATCH v3 2/2] drm/i915/tgl: MOCS table update @ 2019-11-13 1:09 ` Lucas De Marchi 0 siblings, 0 replies; 26+ messages in thread From: Lucas De Marchi @ 2019-11-13 1:09 UTC (permalink / raw) To: Matt Roper; +Cc: intel-gfx, Francisco Jerez On Tue, Nov 12, 2019 at 02:47:57PM -0800, Matt Roper wrote: >The bspec was just updated with a minor correction to entry 61 (it >shouldn't have had the SCF bit set). > >v2: > - Add a MOCS_ENTRY_UNUSED() and use it to declare the > explicitly-reserved MOCS entries. (Lucas) > - Move the warning suppression from the Makefile to a #pragma that only > affects the TGL table. (Lucas) > >v3: > - Entries 16 and 17 are identical to ICL now, so no need to explicitly > adjust them (or mess with compiler warning overrides). > >Bspec: 45101 >Fixes: 2ddf992179c4 ("drm/i915/tgl: Define MOCS entries for Tigerlake") >Cc: Tomasz Lis <tomasz.lis@intel.com> >Cc: Lucas De Marchi <lucas.demarchi@intel.com> >Cc: Francisco Jerez <francisco.jerez.plata@intel.com> >Cc: Jon Bloomfield <jon.bloomfield@intel.com> >Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Lucas De Marchi >--- > drivers/gpu/drm/i915/gt/intel_mocs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c b/drivers/gpu/drm/i915/gt/intel_mocs.c >index 06e2adbf27be..2b977991b785 100644 >--- a/drivers/gpu/drm/i915/gt/intel_mocs.c >+++ b/drivers/gpu/drm/i915/gt/intel_mocs.c >@@ -263,7 +263,7 @@ static const struct drm_i915_mocs_entry tigerlake_mocs_table[] = { > L3_1_UC), > /* HW Special Case (Displayable) */ > MOCS_ENTRY(61, >- LE_1_UC | LE_TC_1_LLC | LE_SCF(1), >+ LE_1_UC | LE_TC_1_LLC, > L3_3_WB), > }; > >-- >2.21.0 > _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v3 2/2] drm/i915/tgl: MOCS table update @ 2019-11-13 12:58 ` Lis, Tomasz 0 siblings, 0 replies; 26+ messages in thread From: Lis, Tomasz @ 2019-11-13 12:58 UTC (permalink / raw) To: Lucas De Marchi, Matt Roper; +Cc: intel-gfx, Francisco Jerez On 2019-11-13 02:09, Lucas De Marchi wrote: > On Tue, Nov 12, 2019 at 02:47:57PM -0800, Matt Roper wrote: >> The bspec was just updated with a minor correction to entry 61 (it >> shouldn't have had the SCF bit set). >> >> v2: >> - Add a MOCS_ENTRY_UNUSED() and use it to declare the >> explicitly-reserved MOCS entries. (Lucas) >> - Move the warning suppression from the Makefile to a #pragma that only >> affects the TGL table. (Lucas) >> >> v3: >> - Entries 16 and 17 are identical to ICL now, so no need to explicitly >> adjust them (or mess with compiler warning overrides). >> >> Bspec: 45101 >> Fixes: 2ddf992179c4 ("drm/i915/tgl: Define MOCS entries for Tigerlake") >> Cc: Tomasz Lis <tomasz.lis@intel.com> >> Cc: Lucas De Marchi <lucas.demarchi@intel.com> >> Cc: Francisco Jerez <francisco.jerez.plata@intel.com> >> Cc: Jon Bloomfield <jon.bloomfield@intel.com> >> Signed-off-by: Matt Roper <matthew.d.roper@intel.com> > > > Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> > > Lucas De Marchi Reviewed-by: Tomasz Lis <tomasz.lis@intel.com> Tomasz > >> --- >> drivers/gpu/drm/i915/gt/intel_mocs.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c >> b/drivers/gpu/drm/i915/gt/intel_mocs.c >> index 06e2adbf27be..2b977991b785 100644 >> --- a/drivers/gpu/drm/i915/gt/intel_mocs.c >> +++ b/drivers/gpu/drm/i915/gt/intel_mocs.c >> @@ -263,7 +263,7 @@ static const struct drm_i915_mocs_entry >> tigerlake_mocs_table[] = { >> L3_1_UC), >> /* HW Special Case (Displayable) */ >> MOCS_ENTRY(61, >> - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), >> + LE_1_UC | LE_TC_1_LLC, >> L3_3_WB), >> }; >> >> -- >> 2.21.0 >> _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [Intel-gfx] [PATCH v3 2/2] drm/i915/tgl: MOCS table update @ 2019-11-13 12:58 ` Lis, Tomasz 0 siblings, 0 replies; 26+ messages in thread From: Lis, Tomasz @ 2019-11-13 12:58 UTC (permalink / raw) To: Lucas De Marchi, Matt Roper; +Cc: intel-gfx, Francisco Jerez On 2019-11-13 02:09, Lucas De Marchi wrote: > On Tue, Nov 12, 2019 at 02:47:57PM -0800, Matt Roper wrote: >> The bspec was just updated with a minor correction to entry 61 (it >> shouldn't have had the SCF bit set). >> >> v2: >> - Add a MOCS_ENTRY_UNUSED() and use it to declare the >> explicitly-reserved MOCS entries. (Lucas) >> - Move the warning suppression from the Makefile to a #pragma that only >> affects the TGL table. (Lucas) >> >> v3: >> - Entries 16 and 17 are identical to ICL now, so no need to explicitly >> adjust them (or mess with compiler warning overrides). >> >> Bspec: 45101 >> Fixes: 2ddf992179c4 ("drm/i915/tgl: Define MOCS entries for Tigerlake") >> Cc: Tomasz Lis <tomasz.lis@intel.com> >> Cc: Lucas De Marchi <lucas.demarchi@intel.com> >> Cc: Francisco Jerez <francisco.jerez.plata@intel.com> >> Cc: Jon Bloomfield <jon.bloomfield@intel.com> >> Signed-off-by: Matt Roper <matthew.d.roper@intel.com> > > > Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> > > Lucas De Marchi Reviewed-by: Tomasz Lis <tomasz.lis@intel.com> Tomasz > >> --- >> drivers/gpu/drm/i915/gt/intel_mocs.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c >> b/drivers/gpu/drm/i915/gt/intel_mocs.c >> index 06e2adbf27be..2b977991b785 100644 >> --- a/drivers/gpu/drm/i915/gt/intel_mocs.c >> +++ b/drivers/gpu/drm/i915/gt/intel_mocs.c >> @@ -263,7 +263,7 @@ static const struct drm_i915_mocs_entry >> tigerlake_mocs_table[] = { >> L3_1_UC), >> /* HW Special Case (Displayable) */ >> MOCS_ENTRY(61, >> - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), >> + LE_1_UC | LE_TC_1_LLC, >> L3_3_WB), >> }; >> >> -- >> 2.21.0 >> _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v3 1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" @ 2019-11-12 23:15 ` Francisco Jerez 0 siblings, 0 replies; 26+ messages in thread From: Francisco Jerez @ 2019-11-12 23:15 UTC (permalink / raw) To: Matt Roper, intel-gfx; +Cc: Lucas De Marchi [-- Attachment #1.1.1: Type: text/plain, Size: 2250 bytes --] Matt Roper <matthew.d.roper@intel.com> writes: > This reverts commit f4071997f1de016780ec6b79c63d90cd5886ee83. > > These extra EHL entries won't behave as expected without a bit more work > on the kernel side so let's drop them until that kernel work has had a > chance to land. Userspace trying to use these new entries won't get the > advantage of the new functionality these entries are meant to provide, > but at least it won't misbehave. > > When we do add these back in the future, we'll probably want to > explicitly use separate tables for ICL and EHL so that userspace > software that mistakenly uses these entries (which are undefined on ICL) > sees the same behavior it sees with all the other undefined entries. > > Cc: Francisco Jerez <francisco.jerez.plata@intel.com> > Cc: Jon Bloomfield <jon.bloomfield@intel.com> > Cc: Lucas De Marchi <lucas.demarchi@intel.com> > Signed-off-by: Matt Roper <matthew.d.roper@intel.com> I think f4071997f1de016780ec6b79c63d90cd5886ee83 has hit a few kernel releases already. Wouldn't it make sense to CC stable? Patch is: Reviewed-by: Francisco Jerez <currojerez@riseup.net> > --- > drivers/gpu/drm/i915/gt/intel_mocs.c | 8 -------- > 1 file changed, 8 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c b/drivers/gpu/drm/i915/gt/intel_mocs.c > index 6e881c735b20..06e2adbf27be 100644 > --- a/drivers/gpu/drm/i915/gt/intel_mocs.c > +++ b/drivers/gpu/drm/i915/gt/intel_mocs.c > @@ -200,14 +200,6 @@ static const struct drm_i915_mocs_entry broxton_mocs_table[] = { > MOCS_ENTRY(15, \ > LE_3_WB | LE_TC_1_LLC | LE_LRUM(2) | LE_AOM(1), \ > L3_3_WB), \ > - /* Bypass LLC - Uncached (EHL+) */ \ > - MOCS_ENTRY(16, \ > - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), \ > - L3_1_UC), \ > - /* Bypass LLC - L3 (Read-Only) (EHL+) */ \ > - MOCS_ENTRY(17, \ > - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), \ > - L3_3_WB), \ > /* Self-Snoop - L3 + LLC */ \ > MOCS_ENTRY(18, \ > LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_SSE(3), \ > -- > 2.21.0 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/intel-gfx [-- Attachment #1.2: signature.asc --] [-- Type: application/pgp-signature, Size: 227 bytes --] [-- Attachment #2: Type: text/plain, Size: 159 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [Intel-gfx] [PATCH v3 1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" @ 2019-11-12 23:15 ` Francisco Jerez 0 siblings, 0 replies; 26+ messages in thread From: Francisco Jerez @ 2019-11-12 23:15 UTC (permalink / raw) To: Matt Roper, intel-gfx; +Cc: Lucas De Marchi [-- Attachment #1.1.1: Type: text/plain, Size: 2250 bytes --] Matt Roper <matthew.d.roper@intel.com> writes: > This reverts commit f4071997f1de016780ec6b79c63d90cd5886ee83. > > These extra EHL entries won't behave as expected without a bit more work > on the kernel side so let's drop them until that kernel work has had a > chance to land. Userspace trying to use these new entries won't get the > advantage of the new functionality these entries are meant to provide, > but at least it won't misbehave. > > When we do add these back in the future, we'll probably want to > explicitly use separate tables for ICL and EHL so that userspace > software that mistakenly uses these entries (which are undefined on ICL) > sees the same behavior it sees with all the other undefined entries. > > Cc: Francisco Jerez <francisco.jerez.plata@intel.com> > Cc: Jon Bloomfield <jon.bloomfield@intel.com> > Cc: Lucas De Marchi <lucas.demarchi@intel.com> > Signed-off-by: Matt Roper <matthew.d.roper@intel.com> I think f4071997f1de016780ec6b79c63d90cd5886ee83 has hit a few kernel releases already. Wouldn't it make sense to CC stable? Patch is: Reviewed-by: Francisco Jerez <currojerez@riseup.net> > --- > drivers/gpu/drm/i915/gt/intel_mocs.c | 8 -------- > 1 file changed, 8 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c b/drivers/gpu/drm/i915/gt/intel_mocs.c > index 6e881c735b20..06e2adbf27be 100644 > --- a/drivers/gpu/drm/i915/gt/intel_mocs.c > +++ b/drivers/gpu/drm/i915/gt/intel_mocs.c > @@ -200,14 +200,6 @@ static const struct drm_i915_mocs_entry broxton_mocs_table[] = { > MOCS_ENTRY(15, \ > LE_3_WB | LE_TC_1_LLC | LE_LRUM(2) | LE_AOM(1), \ > L3_3_WB), \ > - /* Bypass LLC - Uncached (EHL+) */ \ > - MOCS_ENTRY(16, \ > - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), \ > - L3_1_UC), \ > - /* Bypass LLC - L3 (Read-Only) (EHL+) */ \ > - MOCS_ENTRY(17, \ > - LE_1_UC | LE_TC_1_LLC | LE_SCF(1), \ > - L3_3_WB), \ > /* Self-Snoop - L3 + LLC */ \ > MOCS_ENTRY(18, \ > LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_SSE(3), \ > -- > 2.21.0 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/intel-gfx [-- Attachment #1.2: signature.asc --] [-- Type: application/pgp-signature, Size: 227 bytes --] [-- Attachment #2: Type: text/plain, Size: 159 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [v3,1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" @ 2019-11-13 0:32 ` Patchwork 0 siblings, 0 replies; 26+ messages in thread From: Patchwork @ 2019-11-13 0:32 UTC (permalink / raw) To: Matt Roper; +Cc: intel-gfx == Series Details == Series: series starting with [v3,1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" URL : https://patchwork.freedesktop.org/series/69383/ State : success == Summary == CI Bug Log - changes from CI_DRM_7323 -> Patchwork_15245 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/index.html Known issues ------------ Here are the changes found in Patchwork_15245 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live_blt: - fi-bsw-nick: [PASS][1] -> [DMESG-FAIL][2] ([fdo#112176]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/fi-bsw-nick/igt@i915_selftest@live_blt.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/fi-bsw-nick/igt@i915_selftest@live_blt.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [PASS][3] -> [FAIL][4] ([fdo#111407]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - fi-skl-6770hq: [PASS][5] -> [FAIL][6] ([fdo#109495]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/fi-skl-6770hq/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/fi-skl-6770hq/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html #### Possible fixes #### * igt@gem_mmap_gtt@basic-copy: - fi-glk-dsi: [INCOMPLETE][7] ([fdo#103359] / [k.org#198133]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/fi-glk-dsi/igt@gem_mmap_gtt@basic-copy.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/fi-glk-dsi/igt@gem_mmap_gtt@basic-copy.html * igt@i915_module_load@reload-with-fault-injection: - {fi-kbl-7560u}: [DMESG-WARN][9] -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/fi-kbl-7560u/igt@i915_module_load@reload-with-fault-injection.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/fi-kbl-7560u/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_flip@basic-flip-vs-wf_vblank: - fi-skl-6770hq: [DMESG-WARN][11] ([fdo#105541]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/fi-skl-6770hq/igt@kms_flip@basic-flip-vs-wf_vblank.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/fi-skl-6770hq/igt@kms_flip@basic-flip-vs-wf_vblank.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359 [fdo#105541]: https://bugs.freedesktop.org/show_bug.cgi?id=105541 [fdo#109495]: https://bugs.freedesktop.org/show_bug.cgi?id=109495 [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407 [fdo#112176]: https://bugs.freedesktop.org/show_bug.cgi?id=112176 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (51 -> 46) ------------------------------ Missing (5): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper Build changes ------------- * CI: CI-20190529 -> None * Linux: CI_DRM_7323 -> Patchwork_15245 CI-20190529: 20190529 CI_DRM_7323: aac244f23bf1eaf986c5df9e529863b34e52bee8 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_5273: 602003c3d751c72fc309a0e64d4193f6da720f6b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_15245: 8724d17c3122a2f84c5efb4fa7e1daf6f71c247d @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 8724d17c3122 drm/i915/tgl: MOCS table update 642131253e70 Revert "drm/i915/ehl: Update MOCS table for EHL" == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/index.html _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v3,1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" @ 2019-11-13 0:32 ` Patchwork 0 siblings, 0 replies; 26+ messages in thread From: Patchwork @ 2019-11-13 0:32 UTC (permalink / raw) To: Matt Roper; +Cc: intel-gfx == Series Details == Series: series starting with [v3,1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" URL : https://patchwork.freedesktop.org/series/69383/ State : success == Summary == CI Bug Log - changes from CI_DRM_7323 -> Patchwork_15245 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/index.html Known issues ------------ Here are the changes found in Patchwork_15245 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live_blt: - fi-bsw-nick: [PASS][1] -> [DMESG-FAIL][2] ([fdo#112176]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/fi-bsw-nick/igt@i915_selftest@live_blt.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/fi-bsw-nick/igt@i915_selftest@live_blt.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [PASS][3] -> [FAIL][4] ([fdo#111407]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - fi-skl-6770hq: [PASS][5] -> [FAIL][6] ([fdo#109495]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/fi-skl-6770hq/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/fi-skl-6770hq/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html #### Possible fixes #### * igt@gem_mmap_gtt@basic-copy: - fi-glk-dsi: [INCOMPLETE][7] ([fdo#103359] / [k.org#198133]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/fi-glk-dsi/igt@gem_mmap_gtt@basic-copy.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/fi-glk-dsi/igt@gem_mmap_gtt@basic-copy.html * igt@i915_module_load@reload-with-fault-injection: - {fi-kbl-7560u}: [DMESG-WARN][9] -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/fi-kbl-7560u/igt@i915_module_load@reload-with-fault-injection.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/fi-kbl-7560u/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_flip@basic-flip-vs-wf_vblank: - fi-skl-6770hq: [DMESG-WARN][11] ([fdo#105541]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/fi-skl-6770hq/igt@kms_flip@basic-flip-vs-wf_vblank.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/fi-skl-6770hq/igt@kms_flip@basic-flip-vs-wf_vblank.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359 [fdo#105541]: https://bugs.freedesktop.org/show_bug.cgi?id=105541 [fdo#109495]: https://bugs.freedesktop.org/show_bug.cgi?id=109495 [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407 [fdo#112176]: https://bugs.freedesktop.org/show_bug.cgi?id=112176 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (51 -> 46) ------------------------------ Missing (5): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper Build changes ------------- * CI: CI-20190529 -> None * Linux: CI_DRM_7323 -> Patchwork_15245 CI-20190529: 20190529 CI_DRM_7323: aac244f23bf1eaf986c5df9e529863b34e52bee8 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_5273: 602003c3d751c72fc309a0e64d4193f6da720f6b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_15245: 8724d17c3122a2f84c5efb4fa7e1daf6f71c247d @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 8724d17c3122 drm/i915/tgl: MOCS table update 642131253e70 Revert "drm/i915/ehl: Update MOCS table for EHL" == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/index.html _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [v3,1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" @ 2019-11-13 11:49 ` Patchwork 0 siblings, 0 replies; 26+ messages in thread From: Patchwork @ 2019-11-13 11:49 UTC (permalink / raw) To: Matt Roper; +Cc: intel-gfx == Series Details == Series: series starting with [v3,1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" URL : https://patchwork.freedesktop.org/series/69383/ State : failure == Summary == CI Bug Log - changes from CI_DRM_7323_full -> Patchwork_15245_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_15245_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_15245_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_15245_full: ### IGT changes ### #### Possible regressions #### * igt@gem_mocs_settings@mocs-rc6-ctx-render: - shard-tglb: NOTRUN -> [FAIL][1] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb4/igt@gem_mocs_settings@mocs-rc6-ctx-render.html * igt@gem_mocs_settings@mocs-settings-ctx-render: - shard-tglb: [PASS][2] -> [FAIL][3] +10 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb8/igt@gem_mocs_settings@mocs-settings-ctx-render.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@gem_mocs_settings@mocs-settings-ctx-render.html Known issues ------------ Here are the changes found in Patchwork_15245_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@vcs1-cleanup: - shard-iclb: [PASS][4] -> [SKIP][5] ([fdo#109276] / [fdo#112080]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_ctx_persistence@vcs1-cleanup.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb6/igt@gem_ctx_persistence@vcs1-cleanup.html * igt@gem_eio@unwedge-stress: - shard-snb: [PASS][6] -> [FAIL][7] ([fdo#109661]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb2/igt@gem_eio@unwedge-stress.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-snb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@smoke: - shard-iclb: [PASS][8] -> [SKIP][9] ([fdo#110854]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_exec_balancer@smoke.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb3/igt@gem_exec_balancer@smoke.html * igt@gem_exec_create@basic: - shard-tglb: [PASS][10] -> [INCOMPLETE][11] ([fdo#111736]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb9/igt@gem_exec_create@basic.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb6/igt@gem_exec_create@basic.html * igt@gem_exec_parallel@vcs1-fds: - shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#112080]) +7 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_exec_parallel@vcs1-fds.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb6/igt@gem_exec_parallel@vcs1-fds.html * igt@gem_exec_schedule@fifo-bsd: - shard-iclb: [PASS][14] -> [SKIP][15] ([fdo#112146]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb7/igt@gem_exec_schedule@fifo-bsd.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@gem_exec_schedule@fifo-bsd.html * igt@gem_persistent_relocs@forked: - shard-hsw: [PASS][16] -> [INCOMPLETE][17] ([fdo#103540]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-hsw1/igt@gem_persistent_relocs@forked.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-hsw8/igt@gem_persistent_relocs@forked.html * igt@gem_sync@basic-store-each: - shard-tglb: [PASS][18] -> [INCOMPLETE][19] ([fdo#111647] / [fdo#111747]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb4/igt@gem_sync@basic-store-each.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb6/igt@gem_sync@basic-store-each.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-hsw: [PASS][20] -> [DMESG-WARN][21] ([fdo#110789] / [fdo#111870]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-hsw4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-hsw1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup: - shard-hsw: [PASS][22] -> [DMESG-WARN][23] ([fdo#111870]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-hsw4/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-snb: [PASS][24] -> [SKIP][25] ([fdo#109271]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb7/igt@i915_pm_rc6_residency@rc6-accuracy.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_selftest@mock_requests: - shard-skl: [PASS][26] -> [DMESG-WARN][27] ([fdo#111086]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl2/igt@i915_selftest@mock_requests.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl7/igt@i915_selftest@mock_requests.html * igt@kms_color@pipe-b-ctm-0-75: - shard-skl: [PASS][28] -> [DMESG-WARN][29] ([fdo#106107]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl8/igt@kms_color@pipe-b-ctm-0-75.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl4/igt@kms_color@pipe-b-ctm-0-75.html * igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen: - shard-skl: [PASS][30] -> [FAIL][31] ([fdo#103232]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl5/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl4/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html * igt@kms_flip@flip-vs-expired-vblank: - shard-skl: [PASS][32] -> [FAIL][33] ([fdo#105363]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl9/igt@kms_flip@flip-vs-expired-vblank.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl10/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-suspend: - shard-skl: [PASS][34] -> [INCOMPLETE][35] ([fdo#109507]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl7/igt@kms_flip@flip-vs-suspend.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl5/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-apl: [PASS][36] -> [DMESG-WARN][37] ([fdo#108566]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-iclb: [PASS][38] -> [FAIL][39] ([fdo#103167]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-tglb: [PASS][40] -> [FAIL][41] ([fdo#103167]) +4 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt: - shard-skl: [PASS][42] -> [FAIL][43] ([fdo#103167]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-tglb: [PASS][44] -> [INCOMPLETE][45] ([fdo#111832] / [fdo#111850]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb9/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-iclb: [PASS][46] -> [INCOMPLETE][47] ([fdo#107713] / [fdo#110042]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: - shard-skl: [PASS][48] -> [FAIL][49] ([fdo#108145]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl10/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl1/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - shard-skl: [PASS][50] -> [FAIL][51] ([fdo#108145] / [fdo#110403]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl7/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl3/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [PASS][52] -> [SKIP][53] ([fdo#109642] / [fdo#111068]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb2/igt@kms_psr2_su@frontbuffer.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][54] -> [SKIP][55] ([fdo#109441]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@kms_psr@psr2_cursor_render.html * igt@kms_psr@psr2_suspend: - shard-tglb: [PASS][56] -> [DMESG-WARN][57] ([fdo#111600]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb8/igt@kms_psr@psr2_suspend.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb4/igt@kms_psr@psr2_suspend.html * igt@kms_setmode@basic: - shard-kbl: [PASS][58] -> [FAIL][59] ([fdo#99912]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-kbl6/igt@kms_setmode@basic.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-kbl2/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [PASS][60] -> [DMESG-WARN][61] ([fdo#108566]) +5 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@prime_vgem@fence-wait-bsd2: - shard-iclb: [PASS][62] -> [SKIP][63] ([fdo#109276]) +9 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb4/igt@prime_vgem@fence-wait-bsd2.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb8/igt@prime_vgem@fence-wait-bsd2.html #### Possible fixes #### * igt@gem_busy@busy-vcs1: - shard-iclb: [SKIP][64] ([fdo#112080]) -> [PASS][65] +4 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb3/igt@gem_busy@busy-vcs1.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb4/igt@gem_busy@busy-vcs1.html * igt@gem_ctx_isolation@bcs0-s3: - shard-apl: [DMESG-WARN][66] ([fdo#108566]) -> [PASS][67] +4 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-apl4/igt@gem_ctx_isolation@bcs0-s3.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-apl8/igt@gem_ctx_isolation@bcs0-s3.html * igt@gem_ctx_isolation@rcs0-s3: - shard-kbl: [DMESG-WARN][68] ([fdo#108566]) -> [PASS][69] +7 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-kbl7/igt@gem_ctx_isolation@rcs0-s3.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-kbl1/igt@gem_ctx_isolation@rcs0-s3.html * igt@gem_ctx_isolation@vcs1-s3: - shard-iclb: [SKIP][70] ([fdo#109276] / [fdo#112080]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb8/igt@gem_ctx_isolation@vcs1-s3.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb2/igt@gem_ctx_isolation@vcs1-s3.html * igt@gem_eio@suspend: - shard-tglb: [INCOMPLETE][72] ([fdo#111850]) -> [PASS][73] +2 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb3/igt@gem_eio@suspend.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb1/igt@gem_eio@suspend.html * igt@gem_exec_parallel@basic: - shard-tglb: [INCOMPLETE][74] ([fdo#111887]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb7/igt@gem_exec_parallel@basic.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@gem_exec_parallel@basic.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [SKIP][76] ([fdo#112146]) -> [PASS][77] +2 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb3/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_schedule@preempt-queue-bsd2: - shard-iclb: [SKIP][78] ([fdo#109276]) -> [PASS][79] +6 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb7/igt@gem_exec_schedule@preempt-queue-bsd2.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@gem_exec_schedule@preempt-queue-bsd2.html * igt@gem_sync@basic-each: - shard-tglb: [INCOMPLETE][80] ([fdo#111647] / [fdo#111998]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb6/igt@gem_sync@basic-each.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb2/igt@gem_sync@basic-each.html * igt@gem_sync@basic-store-all: - shard-tglb: [INCOMPLETE][82] ([fdo#111647]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb6/igt@gem_sync@basic-store-all.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@gem_sync@basic-store-all.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [FAIL][84] ([fdo#111830 ]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-tglb: [INCOMPLETE][86] ([fdo#111832] / [fdo#111850]) -> [PASS][87] +2 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb7/igt@i915_pm_rpm@system-suspend-execbuf.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_selftest@live_execlists: - shard-glk: [INCOMPLETE][88] ([fdo#103359] / [k.org#198133]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-glk5/igt@i915_selftest@live_execlists.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-glk8/igt@i915_selftest@live_execlists.html * igt@i915_selftest@live_hangcheck: - shard-snb: [INCOMPLETE][90] ([fdo#105411]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb5/igt@i915_selftest@live_hangcheck.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-snb1/igt@i915_selftest@live_hangcheck.html * igt@kms_color@pipe-b-ctm-0-5: - shard-skl: [DMESG-WARN][92] ([fdo#106107]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl9/igt@kms_color@pipe-b-ctm-0-5.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl10/igt@kms_color@pipe-b-ctm-0-5.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-glk: [FAIL][94] ([fdo#105363]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-tglb: [FAIL][96] ([fdo#103167]) -> [PASS][97] +3 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-iclb: [FAIL][98] ([fdo#103167]) -> [PASS][99] +6 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-tglb: [INCOMPLETE][100] ([fdo#111832] / [fdo#111850] / [fdo#111884]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_psr@psr2_cursor_blt: - shard-iclb: [SKIP][102] ([fdo#109441]) -> [PASS][103] +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@kms_psr@psr2_cursor_blt.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html * igt@kms_psr@suspend: - shard-skl: [INCOMPLETE][104] ([fdo#108972]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl9/igt@kms_psr@suspend.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl10/igt@kms_psr@suspend.html * igt@kms_vblank@pipe-b-wait-busy-hang: - shard-snb: [SKIP][106] ([fdo#109271]) -> [PASS][107] +4 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb6/igt@kms_vblank@pipe-b-wait-busy-hang.html [107]: http == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/index.html _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [v3,1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" @ 2019-11-13 11:49 ` Patchwork 0 siblings, 0 replies; 26+ messages in thread From: Patchwork @ 2019-11-13 11:49 UTC (permalink / raw) To: Matt Roper; +Cc: intel-gfx == Series Details == Series: series starting with [v3,1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" URL : https://patchwork.freedesktop.org/series/69383/ State : failure == Summary == CI Bug Log - changes from CI_DRM_7323_full -> Patchwork_15245_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_15245_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_15245_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_15245_full: ### IGT changes ### #### Possible regressions #### * igt@gem_mocs_settings@mocs-rc6-ctx-render: - shard-tglb: NOTRUN -> [FAIL][1] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb4/igt@gem_mocs_settings@mocs-rc6-ctx-render.html * igt@gem_mocs_settings@mocs-settings-ctx-render: - shard-tglb: [PASS][2] -> [FAIL][3] +10 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb8/igt@gem_mocs_settings@mocs-settings-ctx-render.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@gem_mocs_settings@mocs-settings-ctx-render.html Known issues ------------ Here are the changes found in Patchwork_15245_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@vcs1-cleanup: - shard-iclb: [PASS][4] -> [SKIP][5] ([fdo#109276] / [fdo#112080]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_ctx_persistence@vcs1-cleanup.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb6/igt@gem_ctx_persistence@vcs1-cleanup.html * igt@gem_eio@unwedge-stress: - shard-snb: [PASS][6] -> [FAIL][7] ([fdo#109661]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb2/igt@gem_eio@unwedge-stress.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-snb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@smoke: - shard-iclb: [PASS][8] -> [SKIP][9] ([fdo#110854]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_exec_balancer@smoke.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb3/igt@gem_exec_balancer@smoke.html * igt@gem_exec_create@basic: - shard-tglb: [PASS][10] -> [INCOMPLETE][11] ([fdo#111736]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb9/igt@gem_exec_create@basic.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb6/igt@gem_exec_create@basic.html * igt@gem_exec_parallel@vcs1-fds: - shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#112080]) +7 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_exec_parallel@vcs1-fds.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb6/igt@gem_exec_parallel@vcs1-fds.html * igt@gem_exec_schedule@fifo-bsd: - shard-iclb: [PASS][14] -> [SKIP][15] ([fdo#112146]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb7/igt@gem_exec_schedule@fifo-bsd.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@gem_exec_schedule@fifo-bsd.html * igt@gem_persistent_relocs@forked: - shard-hsw: [PASS][16] -> [INCOMPLETE][17] ([fdo#103540]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-hsw1/igt@gem_persistent_relocs@forked.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-hsw8/igt@gem_persistent_relocs@forked.html * igt@gem_sync@basic-store-each: - shard-tglb: [PASS][18] -> [INCOMPLETE][19] ([fdo#111647] / [fdo#111747]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb4/igt@gem_sync@basic-store-each.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb6/igt@gem_sync@basic-store-each.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-hsw: [PASS][20] -> [DMESG-WARN][21] ([fdo#110789] / [fdo#111870]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-hsw4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-hsw1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup: - shard-hsw: [PASS][22] -> [DMESG-WARN][23] ([fdo#111870]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-hsw4/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-snb: [PASS][24] -> [SKIP][25] ([fdo#109271]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb7/igt@i915_pm_rc6_residency@rc6-accuracy.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_selftest@mock_requests: - shard-skl: [PASS][26] -> [DMESG-WARN][27] ([fdo#111086]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl2/igt@i915_selftest@mock_requests.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl7/igt@i915_selftest@mock_requests.html * igt@kms_color@pipe-b-ctm-0-75: - shard-skl: [PASS][28] -> [DMESG-WARN][29] ([fdo#106107]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl8/igt@kms_color@pipe-b-ctm-0-75.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl4/igt@kms_color@pipe-b-ctm-0-75.html * igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen: - shard-skl: [PASS][30] -> [FAIL][31] ([fdo#103232]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl5/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl4/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html * igt@kms_flip@flip-vs-expired-vblank: - shard-skl: [PASS][32] -> [FAIL][33] ([fdo#105363]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl9/igt@kms_flip@flip-vs-expired-vblank.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl10/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-suspend: - shard-skl: [PASS][34] -> [INCOMPLETE][35] ([fdo#109507]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl7/igt@kms_flip@flip-vs-suspend.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl5/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-apl: [PASS][36] -> [DMESG-WARN][37] ([fdo#108566]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-iclb: [PASS][38] -> [FAIL][39] ([fdo#103167]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-tglb: [PASS][40] -> [FAIL][41] ([fdo#103167]) +4 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt: - shard-skl: [PASS][42] -> [FAIL][43] ([fdo#103167]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-tglb: [PASS][44] -> [INCOMPLETE][45] ([fdo#111832] / [fdo#111850]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb9/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-iclb: [PASS][46] -> [INCOMPLETE][47] ([fdo#107713] / [fdo#110042]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: - shard-skl: [PASS][48] -> [FAIL][49] ([fdo#108145]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl10/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl1/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - shard-skl: [PASS][50] -> [FAIL][51] ([fdo#108145] / [fdo#110403]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl7/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl3/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [PASS][52] -> [SKIP][53] ([fdo#109642] / [fdo#111068]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb2/igt@kms_psr2_su@frontbuffer.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][54] -> [SKIP][55] ([fdo#109441]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@kms_psr@psr2_cursor_render.html * igt@kms_psr@psr2_suspend: - shard-tglb: [PASS][56] -> [DMESG-WARN][57] ([fdo#111600]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb8/igt@kms_psr@psr2_suspend.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb4/igt@kms_psr@psr2_suspend.html * igt@kms_setmode@basic: - shard-kbl: [PASS][58] -> [FAIL][59] ([fdo#99912]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-kbl6/igt@kms_setmode@basic.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-kbl2/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [PASS][60] -> [DMESG-WARN][61] ([fdo#108566]) +5 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@prime_vgem@fence-wait-bsd2: - shard-iclb: [PASS][62] -> [SKIP][63] ([fdo#109276]) +9 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb4/igt@prime_vgem@fence-wait-bsd2.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb8/igt@prime_vgem@fence-wait-bsd2.html #### Possible fixes #### * igt@gem_busy@busy-vcs1: - shard-iclb: [SKIP][64] ([fdo#112080]) -> [PASS][65] +4 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb3/igt@gem_busy@busy-vcs1.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb4/igt@gem_busy@busy-vcs1.html * igt@gem_ctx_isolation@bcs0-s3: - shard-apl: [DMESG-WARN][66] ([fdo#108566]) -> [PASS][67] +4 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-apl4/igt@gem_ctx_isolation@bcs0-s3.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-apl8/igt@gem_ctx_isolation@bcs0-s3.html * igt@gem_ctx_isolation@rcs0-s3: - shard-kbl: [DMESG-WARN][68] ([fdo#108566]) -> [PASS][69] +7 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-kbl7/igt@gem_ctx_isolation@rcs0-s3.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-kbl1/igt@gem_ctx_isolation@rcs0-s3.html * igt@gem_ctx_isolation@vcs1-s3: - shard-iclb: [SKIP][70] ([fdo#109276] / [fdo#112080]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb8/igt@gem_ctx_isolation@vcs1-s3.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb2/igt@gem_ctx_isolation@vcs1-s3.html * igt@gem_eio@suspend: - shard-tglb: [INCOMPLETE][72] ([fdo#111850]) -> [PASS][73] +2 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb3/igt@gem_eio@suspend.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb1/igt@gem_eio@suspend.html * igt@gem_exec_parallel@basic: - shard-tglb: [INCOMPLETE][74] ([fdo#111887]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb7/igt@gem_exec_parallel@basic.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@gem_exec_parallel@basic.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [SKIP][76] ([fdo#112146]) -> [PASS][77] +2 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb3/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_schedule@preempt-queue-bsd2: - shard-iclb: [SKIP][78] ([fdo#109276]) -> [PASS][79] +6 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb7/igt@gem_exec_schedule@preempt-queue-bsd2.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@gem_exec_schedule@preempt-queue-bsd2.html * igt@gem_sync@basic-each: - shard-tglb: [INCOMPLETE][80] ([fdo#111647] / [fdo#111998]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb6/igt@gem_sync@basic-each.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb2/igt@gem_sync@basic-each.html * igt@gem_sync@basic-store-all: - shard-tglb: [INCOMPLETE][82] ([fdo#111647]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb6/igt@gem_sync@basic-store-all.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@gem_sync@basic-store-all.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [FAIL][84] ([fdo#111830 ]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-tglb: [INCOMPLETE][86] ([fdo#111832] / [fdo#111850]) -> [PASS][87] +2 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb7/igt@i915_pm_rpm@system-suspend-execbuf.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_selftest@live_execlists: - shard-glk: [INCOMPLETE][88] ([fdo#103359] / [k.org#198133]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-glk5/igt@i915_selftest@live_execlists.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-glk8/igt@i915_selftest@live_execlists.html * igt@i915_selftest@live_hangcheck: - shard-snb: [INCOMPLETE][90] ([fdo#105411]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb5/igt@i915_selftest@live_hangcheck.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-snb1/igt@i915_selftest@live_hangcheck.html * igt@kms_color@pipe-b-ctm-0-5: - shard-skl: [DMESG-WARN][92] ([fdo#106107]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl9/igt@kms_color@pipe-b-ctm-0-5.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl10/igt@kms_color@pipe-b-ctm-0-5.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-glk: [FAIL][94] ([fdo#105363]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-tglb: [FAIL][96] ([fdo#103167]) -> [PASS][97] +3 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-iclb: [FAIL][98] ([fdo#103167]) -> [PASS][99] +6 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-tglb: [INCOMPLETE][100] ([fdo#111832] / [fdo#111850] / [fdo#111884]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_psr@psr2_cursor_blt: - shard-iclb: [SKIP][102] ([fdo#109441]) -> [PASS][103] +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@kms_psr@psr2_cursor_blt.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html * igt@kms_psr@suspend: - shard-skl: [INCOMPLETE][104] ([fdo#108972]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl9/igt@kms_psr@suspend.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl10/igt@kms_psr@suspend.html * igt@kms_vblank@pipe-b-wait-busy-hang: - shard-snb: [SKIP][106] ([fdo#109271]) -> [PASS][107] +4 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb6/igt@kms_vblank@pipe-b-wait-busy-hang.html [107]: http == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/index.html _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for series starting with [v3,1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" @ 2019-11-13 16:39 ` Matt Roper 0 siblings, 0 replies; 26+ messages in thread From: Matt Roper @ 2019-11-13 16:39 UTC (permalink / raw) To: intel-gfx On Wed, Nov 13, 2019 at 11:49:53AM +0000, Patchwork wrote: > == Series Details == > > Series: series starting with [v3,1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" > URL : https://patchwork.freedesktop.org/series/69383/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_7323_full -> Patchwork_15245_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with Patchwork_15245_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_15245_full, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in Patchwork_15245_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_mocs_settings@mocs-rc6-ctx-render: > - shard-tglb: NOTRUN -> [FAIL][1] +1 similar issue > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb4/igt@gem_mocs_settings@mocs-rc6-ctx-render.html > > * igt@gem_mocs_settings@mocs-settings-ctx-render: > - shard-tglb: [PASS][2] -> [FAIL][3] +10 similar issues > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb8/igt@gem_mocs_settings@mocs-settings-ctx-render.html > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@gem_mocs_settings@mocs-settings-ctx-render.html These are expected failures from this change --- this IGT test hardcodes the expected MOCS table into the test, so corrections to the bspec like this also need to be reflected in IGT. I'll send along an IGT patch to address this shortly. Since the rest of the results are correct, added a Cc:stable to the first patch and pushed to dinq. Matt > > > Known issues > ------------ > > Here are the changes found in Patchwork_15245_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_ctx_persistence@vcs1-cleanup: > - shard-iclb: [PASS][4] -> [SKIP][5] ([fdo#109276] / [fdo#112080]) > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_ctx_persistence@vcs1-cleanup.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb6/igt@gem_ctx_persistence@vcs1-cleanup.html > > * igt@gem_eio@unwedge-stress: > - shard-snb: [PASS][6] -> [FAIL][7] ([fdo#109661]) > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb2/igt@gem_eio@unwedge-stress.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-snb7/igt@gem_eio@unwedge-stress.html > > * igt@gem_exec_balancer@smoke: > - shard-iclb: [PASS][8] -> [SKIP][9] ([fdo#110854]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_exec_balancer@smoke.html > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb3/igt@gem_exec_balancer@smoke.html > > * igt@gem_exec_create@basic: > - shard-tglb: [PASS][10] -> [INCOMPLETE][11] ([fdo#111736]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb9/igt@gem_exec_create@basic.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb6/igt@gem_exec_create@basic.html > > * igt@gem_exec_parallel@vcs1-fds: > - shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#112080]) +7 similar issues > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_exec_parallel@vcs1-fds.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb6/igt@gem_exec_parallel@vcs1-fds.html > > * igt@gem_exec_schedule@fifo-bsd: > - shard-iclb: [PASS][14] -> [SKIP][15] ([fdo#112146]) +1 similar issue > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb7/igt@gem_exec_schedule@fifo-bsd.html > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@gem_exec_schedule@fifo-bsd.html > > * igt@gem_persistent_relocs@forked: > - shard-hsw: [PASS][16] -> [INCOMPLETE][17] ([fdo#103540]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-hsw1/igt@gem_persistent_relocs@forked.html > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-hsw8/igt@gem_persistent_relocs@forked.html > > * igt@gem_sync@basic-store-each: > - shard-tglb: [PASS][18] -> [INCOMPLETE][19] ([fdo#111647] / [fdo#111747]) > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb4/igt@gem_sync@basic-store-each.html > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb6/igt@gem_sync@basic-store-each.html > > * igt@gem_userptr_blits@map-fixed-invalidate-busy: > - shard-hsw: [PASS][20] -> [DMESG-WARN][21] ([fdo#110789] / [fdo#111870]) > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-hsw4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-hsw1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html > > * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup: > - shard-hsw: [PASS][22] -> [DMESG-WARN][23] ([fdo#111870]) +1 similar issue > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-hsw4/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html > > * igt@i915_pm_rc6_residency@rc6-accuracy: > - shard-snb: [PASS][24] -> [SKIP][25] ([fdo#109271]) > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb7/igt@i915_pm_rc6_residency@rc6-accuracy.html > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html > > * igt@i915_selftest@mock_requests: > - shard-skl: [PASS][26] -> [DMESG-WARN][27] ([fdo#111086]) > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl2/igt@i915_selftest@mock_requests.html > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl7/igt@i915_selftest@mock_requests.html > > * igt@kms_color@pipe-b-ctm-0-75: > - shard-skl: [PASS][28] -> [DMESG-WARN][29] ([fdo#106107]) > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl8/igt@kms_color@pipe-b-ctm-0-75.html > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl4/igt@kms_color@pipe-b-ctm-0-75.html > > * igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen: > - shard-skl: [PASS][30] -> [FAIL][31] ([fdo#103232]) > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl5/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl4/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html > > * igt@kms_flip@flip-vs-expired-vblank: > - shard-skl: [PASS][32] -> [FAIL][33] ([fdo#105363]) > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl9/igt@kms_flip@flip-vs-expired-vblank.html > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl10/igt@kms_flip@flip-vs-expired-vblank.html > > * igt@kms_flip@flip-vs-suspend: > - shard-skl: [PASS][34] -> [INCOMPLETE][35] ([fdo#109507]) > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl7/igt@kms_flip@flip-vs-suspend.html > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl5/igt@kms_flip@flip-vs-suspend.html > > * igt@kms_flip@flip-vs-suspend-interruptible: > - shard-apl: [PASS][36] -> [DMESG-WARN][37] ([fdo#108566]) +1 similar issue > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible.html > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html > > * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: > - shard-iclb: [PASS][38] -> [FAIL][39] ([fdo#103167]) > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: > - shard-tglb: [PASS][40] -> [FAIL][41] ([fdo#103167]) +4 similar issues > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html > > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt: > - shard-skl: [PASS][42] -> [FAIL][43] ([fdo#103167]) > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: > - shard-tglb: [PASS][44] -> [INCOMPLETE][45] ([fdo#111832] / [fdo#111850]) > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb9/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: > - shard-iclb: [PASS][46] -> [INCOMPLETE][47] ([fdo#107713] / [fdo#110042]) > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: > - shard-skl: [PASS][48] -> [FAIL][49] ([fdo#108145]) > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl10/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl1/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html > > * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: > - shard-skl: [PASS][50] -> [FAIL][51] ([fdo#108145] / [fdo#110403]) > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl7/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl3/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html > > * igt@kms_psr2_su@frontbuffer: > - shard-iclb: [PASS][52] -> [SKIP][53] ([fdo#109642] / [fdo#111068]) > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb2/igt@kms_psr2_su@frontbuffer.html > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@kms_psr2_su@frontbuffer.html > > * igt@kms_psr@psr2_cursor_render: > - shard-iclb: [PASS][54] -> [SKIP][55] ([fdo#109441]) +1 similar issue > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb2/igt@kms_psr@psr2_cursor_render.html > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@kms_psr@psr2_cursor_render.html > > * igt@kms_psr@psr2_suspend: > - shard-tglb: [PASS][56] -> [DMESG-WARN][57] ([fdo#111600]) > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb8/igt@kms_psr@psr2_suspend.html > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb4/igt@kms_psr@psr2_suspend.html > > * igt@kms_setmode@basic: > - shard-kbl: [PASS][58] -> [FAIL][59] ([fdo#99912]) > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-kbl6/igt@kms_setmode@basic.html > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-kbl2/igt@kms_setmode@basic.html > > * igt@kms_vblank@pipe-a-ts-continuation-suspend: > - shard-kbl: [PASS][60] -> [DMESG-WARN][61] ([fdo#108566]) +5 similar issues > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html > > * igt@prime_vgem@fence-wait-bsd2: > - shard-iclb: [PASS][62] -> [SKIP][63] ([fdo#109276]) +9 similar issues > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb4/igt@prime_vgem@fence-wait-bsd2.html > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb8/igt@prime_vgem@fence-wait-bsd2.html > > > #### Possible fixes #### > > * igt@gem_busy@busy-vcs1: > - shard-iclb: [SKIP][64] ([fdo#112080]) -> [PASS][65] +4 similar issues > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb3/igt@gem_busy@busy-vcs1.html > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb4/igt@gem_busy@busy-vcs1.html > > * igt@gem_ctx_isolation@bcs0-s3: > - shard-apl: [DMESG-WARN][66] ([fdo#108566]) -> [PASS][67] +4 similar issues > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-apl4/igt@gem_ctx_isolation@bcs0-s3.html > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-apl8/igt@gem_ctx_isolation@bcs0-s3.html > > * igt@gem_ctx_isolation@rcs0-s3: > - shard-kbl: [DMESG-WARN][68] ([fdo#108566]) -> [PASS][69] +7 similar issues > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-kbl7/igt@gem_ctx_isolation@rcs0-s3.html > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-kbl1/igt@gem_ctx_isolation@rcs0-s3.html > > * igt@gem_ctx_isolation@vcs1-s3: > - shard-iclb: [SKIP][70] ([fdo#109276] / [fdo#112080]) -> [PASS][71] > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb8/igt@gem_ctx_isolation@vcs1-s3.html > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb2/igt@gem_ctx_isolation@vcs1-s3.html > > * igt@gem_eio@suspend: > - shard-tglb: [INCOMPLETE][72] ([fdo#111850]) -> [PASS][73] +2 similar issues > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb3/igt@gem_eio@suspend.html > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb1/igt@gem_eio@suspend.html > > * igt@gem_exec_parallel@basic: > - shard-tglb: [INCOMPLETE][74] ([fdo#111887]) -> [PASS][75] > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb7/igt@gem_exec_parallel@basic.html > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@gem_exec_parallel@basic.html > > * igt@gem_exec_schedule@preempt-other-chain-bsd: > - shard-iclb: [SKIP][76] ([fdo#112146]) -> [PASS][77] +2 similar issues > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb3/igt@gem_exec_schedule@preempt-other-chain-bsd.html > > * igt@gem_exec_schedule@preempt-queue-bsd2: > - shard-iclb: [SKIP][78] ([fdo#109276]) -> [PASS][79] +6 similar issues > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb7/igt@gem_exec_schedule@preempt-queue-bsd2.html > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@gem_exec_schedule@preempt-queue-bsd2.html > > * igt@gem_sync@basic-each: > - shard-tglb: [INCOMPLETE][80] ([fdo#111647] / [fdo#111998]) -> [PASS][81] > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb6/igt@gem_sync@basic-each.html > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb2/igt@gem_sync@basic-each.html > > * igt@gem_sync@basic-store-all: > - shard-tglb: [INCOMPLETE][82] ([fdo#111647]) -> [PASS][83] > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb6/igt@gem_sync@basic-store-all.html > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@gem_sync@basic-store-all.html > > * igt@i915_pm_dc@dc6-dpms: > - shard-iclb: [FAIL][84] ([fdo#111830 ]) -> [PASS][85] > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html > > * igt@i915_pm_rpm@system-suspend-execbuf: > - shard-tglb: [INCOMPLETE][86] ([fdo#111832] / [fdo#111850]) -> [PASS][87] +2 similar issues > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb7/igt@i915_pm_rpm@system-suspend-execbuf.html > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@i915_pm_rpm@system-suspend-execbuf.html > > * igt@i915_selftest@live_execlists: > - shard-glk: [INCOMPLETE][88] ([fdo#103359] / [k.org#198133]) -> [PASS][89] > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-glk5/igt@i915_selftest@live_execlists.html > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-glk8/igt@i915_selftest@live_execlists.html > > * igt@i915_selftest@live_hangcheck: > - shard-snb: [INCOMPLETE][90] ([fdo#105411]) -> [PASS][91] > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb5/igt@i915_selftest@live_hangcheck.html > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-snb1/igt@i915_selftest@live_hangcheck.html > > * igt@kms_color@pipe-b-ctm-0-5: > - shard-skl: [DMESG-WARN][92] ([fdo#106107]) -> [PASS][93] > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl9/igt@kms_color@pipe-b-ctm-0-5.html > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl10/igt@kms_color@pipe-b-ctm-0-5.html > > * igt@kms_flip@2x-flip-vs-expired-vblank: > - shard-glk: [FAIL][94] ([fdo#105363]) -> [PASS][95] > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank.html > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: > - shard-tglb: [FAIL][96] ([fdo#103167]) -> [PASS][97] +3 similar issues > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: > - shard-iclb: [FAIL][98] ([fdo#103167]) -> [PASS][99] +6 similar issues > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-suspend: > - shard-tglb: [INCOMPLETE][100] ([fdo#111832] / [fdo#111850] / [fdo#111884]) -> [PASS][101] > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html > > * igt@kms_psr@psr2_cursor_blt: > - shard-iclb: [SKIP][102] ([fdo#109441]) -> [PASS][103] +1 similar issue > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@kms_psr@psr2_cursor_blt.html > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html > > * igt@kms_psr@suspend: > - shard-skl: [INCOMPLETE][104] ([fdo#108972]) -> [PASS][105] > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl9/igt@kms_psr@suspend.html > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl10/igt@kms_psr@suspend.html > > * igt@kms_vblank@pipe-b-wait-busy-hang: > - shard-snb: [SKIP][106] ([fdo#109271]) -> [PASS][107] +4 similar issues > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb6/igt@kms_vblank@pipe-b-wait-busy-hang.html > [107]: http > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/index.html -- Matt Roper Graphics Software Engineer VTT-OSGC Platform Enablement Intel Corporation (916) 356-2795 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [v3,1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" @ 2019-11-13 16:39 ` Matt Roper 0 siblings, 0 replies; 26+ messages in thread From: Matt Roper @ 2019-11-13 16:39 UTC (permalink / raw) To: intel-gfx On Wed, Nov 13, 2019 at 11:49:53AM +0000, Patchwork wrote: > == Series Details == > > Series: series starting with [v3,1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" > URL : https://patchwork.freedesktop.org/series/69383/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_7323_full -> Patchwork_15245_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with Patchwork_15245_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_15245_full, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in Patchwork_15245_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_mocs_settings@mocs-rc6-ctx-render: > - shard-tglb: NOTRUN -> [FAIL][1] +1 similar issue > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb4/igt@gem_mocs_settings@mocs-rc6-ctx-render.html > > * igt@gem_mocs_settings@mocs-settings-ctx-render: > - shard-tglb: [PASS][2] -> [FAIL][3] +10 similar issues > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb8/igt@gem_mocs_settings@mocs-settings-ctx-render.html > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@gem_mocs_settings@mocs-settings-ctx-render.html These are expected failures from this change --- this IGT test hardcodes the expected MOCS table into the test, so corrections to the bspec like this also need to be reflected in IGT. I'll send along an IGT patch to address this shortly. Since the rest of the results are correct, added a Cc:stable to the first patch and pushed to dinq. Matt > > > Known issues > ------------ > > Here are the changes found in Patchwork_15245_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_ctx_persistence@vcs1-cleanup: > - shard-iclb: [PASS][4] -> [SKIP][5] ([fdo#109276] / [fdo#112080]) > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_ctx_persistence@vcs1-cleanup.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb6/igt@gem_ctx_persistence@vcs1-cleanup.html > > * igt@gem_eio@unwedge-stress: > - shard-snb: [PASS][6] -> [FAIL][7] ([fdo#109661]) > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb2/igt@gem_eio@unwedge-stress.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-snb7/igt@gem_eio@unwedge-stress.html > > * igt@gem_exec_balancer@smoke: > - shard-iclb: [PASS][8] -> [SKIP][9] ([fdo#110854]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_exec_balancer@smoke.html > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb3/igt@gem_exec_balancer@smoke.html > > * igt@gem_exec_create@basic: > - shard-tglb: [PASS][10] -> [INCOMPLETE][11] ([fdo#111736]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb9/igt@gem_exec_create@basic.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb6/igt@gem_exec_create@basic.html > > * igt@gem_exec_parallel@vcs1-fds: > - shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#112080]) +7 similar issues > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_exec_parallel@vcs1-fds.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb6/igt@gem_exec_parallel@vcs1-fds.html > > * igt@gem_exec_schedule@fifo-bsd: > - shard-iclb: [PASS][14] -> [SKIP][15] ([fdo#112146]) +1 similar issue > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb7/igt@gem_exec_schedule@fifo-bsd.html > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@gem_exec_schedule@fifo-bsd.html > > * igt@gem_persistent_relocs@forked: > - shard-hsw: [PASS][16] -> [INCOMPLETE][17] ([fdo#103540]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-hsw1/igt@gem_persistent_relocs@forked.html > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-hsw8/igt@gem_persistent_relocs@forked.html > > * igt@gem_sync@basic-store-each: > - shard-tglb: [PASS][18] -> [INCOMPLETE][19] ([fdo#111647] / [fdo#111747]) > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb4/igt@gem_sync@basic-store-each.html > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb6/igt@gem_sync@basic-store-each.html > > * igt@gem_userptr_blits@map-fixed-invalidate-busy: > - shard-hsw: [PASS][20] -> [DMESG-WARN][21] ([fdo#110789] / [fdo#111870]) > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-hsw4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-hsw1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html > > * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup: > - shard-hsw: [PASS][22] -> [DMESG-WARN][23] ([fdo#111870]) +1 similar issue > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-hsw4/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html > > * igt@i915_pm_rc6_residency@rc6-accuracy: > - shard-snb: [PASS][24] -> [SKIP][25] ([fdo#109271]) > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb7/igt@i915_pm_rc6_residency@rc6-accuracy.html > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html > > * igt@i915_selftest@mock_requests: > - shard-skl: [PASS][26] -> [DMESG-WARN][27] ([fdo#111086]) > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl2/igt@i915_selftest@mock_requests.html > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl7/igt@i915_selftest@mock_requests.html > > * igt@kms_color@pipe-b-ctm-0-75: > - shard-skl: [PASS][28] -> [DMESG-WARN][29] ([fdo#106107]) > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl8/igt@kms_color@pipe-b-ctm-0-75.html > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl4/igt@kms_color@pipe-b-ctm-0-75.html > > * igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen: > - shard-skl: [PASS][30] -> [FAIL][31] ([fdo#103232]) > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl5/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl4/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html > > * igt@kms_flip@flip-vs-expired-vblank: > - shard-skl: [PASS][32] -> [FAIL][33] ([fdo#105363]) > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl9/igt@kms_flip@flip-vs-expired-vblank.html > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl10/igt@kms_flip@flip-vs-expired-vblank.html > > * igt@kms_flip@flip-vs-suspend: > - shard-skl: [PASS][34] -> [INCOMPLETE][35] ([fdo#109507]) > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl7/igt@kms_flip@flip-vs-suspend.html > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl5/igt@kms_flip@flip-vs-suspend.html > > * igt@kms_flip@flip-vs-suspend-interruptible: > - shard-apl: [PASS][36] -> [DMESG-WARN][37] ([fdo#108566]) +1 similar issue > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible.html > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html > > * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: > - shard-iclb: [PASS][38] -> [FAIL][39] ([fdo#103167]) > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: > - shard-tglb: [PASS][40] -> [FAIL][41] ([fdo#103167]) +4 similar issues > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html > > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt: > - shard-skl: [PASS][42] -> [FAIL][43] ([fdo#103167]) > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: > - shard-tglb: [PASS][44] -> [INCOMPLETE][45] ([fdo#111832] / [fdo#111850]) > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb9/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: > - shard-iclb: [PASS][46] -> [INCOMPLETE][47] ([fdo#107713] / [fdo#110042]) > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: > - shard-skl: [PASS][48] -> [FAIL][49] ([fdo#108145]) > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl10/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl1/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html > > * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: > - shard-skl: [PASS][50] -> [FAIL][51] ([fdo#108145] / [fdo#110403]) > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl7/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl3/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html > > * igt@kms_psr2_su@frontbuffer: > - shard-iclb: [PASS][52] -> [SKIP][53] ([fdo#109642] / [fdo#111068]) > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb2/igt@kms_psr2_su@frontbuffer.html > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@kms_psr2_su@frontbuffer.html > > * igt@kms_psr@psr2_cursor_render: > - shard-iclb: [PASS][54] -> [SKIP][55] ([fdo#109441]) +1 similar issue > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb2/igt@kms_psr@psr2_cursor_render.html > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@kms_psr@psr2_cursor_render.html > > * igt@kms_psr@psr2_suspend: > - shard-tglb: [PASS][56] -> [DMESG-WARN][57] ([fdo#111600]) > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb8/igt@kms_psr@psr2_suspend.html > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb4/igt@kms_psr@psr2_suspend.html > > * igt@kms_setmode@basic: > - shard-kbl: [PASS][58] -> [FAIL][59] ([fdo#99912]) > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-kbl6/igt@kms_setmode@basic.html > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-kbl2/igt@kms_setmode@basic.html > > * igt@kms_vblank@pipe-a-ts-continuation-suspend: > - shard-kbl: [PASS][60] -> [DMESG-WARN][61] ([fdo#108566]) +5 similar issues > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html > > * igt@prime_vgem@fence-wait-bsd2: > - shard-iclb: [PASS][62] -> [SKIP][63] ([fdo#109276]) +9 similar issues > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb4/igt@prime_vgem@fence-wait-bsd2.html > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb8/igt@prime_vgem@fence-wait-bsd2.html > > > #### Possible fixes #### > > * igt@gem_busy@busy-vcs1: > - shard-iclb: [SKIP][64] ([fdo#112080]) -> [PASS][65] +4 similar issues > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb3/igt@gem_busy@busy-vcs1.html > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb4/igt@gem_busy@busy-vcs1.html > > * igt@gem_ctx_isolation@bcs0-s3: > - shard-apl: [DMESG-WARN][66] ([fdo#108566]) -> [PASS][67] +4 similar issues > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-apl4/igt@gem_ctx_isolation@bcs0-s3.html > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-apl8/igt@gem_ctx_isolation@bcs0-s3.html > > * igt@gem_ctx_isolation@rcs0-s3: > - shard-kbl: [DMESG-WARN][68] ([fdo#108566]) -> [PASS][69] +7 similar issues > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-kbl7/igt@gem_ctx_isolation@rcs0-s3.html > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-kbl1/igt@gem_ctx_isolation@rcs0-s3.html > > * igt@gem_ctx_isolation@vcs1-s3: > - shard-iclb: [SKIP][70] ([fdo#109276] / [fdo#112080]) -> [PASS][71] > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb8/igt@gem_ctx_isolation@vcs1-s3.html > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb2/igt@gem_ctx_isolation@vcs1-s3.html > > * igt@gem_eio@suspend: > - shard-tglb: [INCOMPLETE][72] ([fdo#111850]) -> [PASS][73] +2 similar issues > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb3/igt@gem_eio@suspend.html > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb1/igt@gem_eio@suspend.html > > * igt@gem_exec_parallel@basic: > - shard-tglb: [INCOMPLETE][74] ([fdo#111887]) -> [PASS][75] > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb7/igt@gem_exec_parallel@basic.html > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@gem_exec_parallel@basic.html > > * igt@gem_exec_schedule@preempt-other-chain-bsd: > - shard-iclb: [SKIP][76] ([fdo#112146]) -> [PASS][77] +2 similar issues > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb3/igt@gem_exec_schedule@preempt-other-chain-bsd.html > > * igt@gem_exec_schedule@preempt-queue-bsd2: > - shard-iclb: [SKIP][78] ([fdo#109276]) -> [PASS][79] +6 similar issues > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb7/igt@gem_exec_schedule@preempt-queue-bsd2.html > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb1/igt@gem_exec_schedule@preempt-queue-bsd2.html > > * igt@gem_sync@basic-each: > - shard-tglb: [INCOMPLETE][80] ([fdo#111647] / [fdo#111998]) -> [PASS][81] > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb6/igt@gem_sync@basic-each.html > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb2/igt@gem_sync@basic-each.html > > * igt@gem_sync@basic-store-all: > - shard-tglb: [INCOMPLETE][82] ([fdo#111647]) -> [PASS][83] > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb6/igt@gem_sync@basic-store-all.html > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@gem_sync@basic-store-all.html > > * igt@i915_pm_dc@dc6-dpms: > - shard-iclb: [FAIL][84] ([fdo#111830 ]) -> [PASS][85] > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html > > * igt@i915_pm_rpm@system-suspend-execbuf: > - shard-tglb: [INCOMPLETE][86] ([fdo#111832] / [fdo#111850]) -> [PASS][87] +2 similar issues > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb7/igt@i915_pm_rpm@system-suspend-execbuf.html > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb7/igt@i915_pm_rpm@system-suspend-execbuf.html > > * igt@i915_selftest@live_execlists: > - shard-glk: [INCOMPLETE][88] ([fdo#103359] / [k.org#198133]) -> [PASS][89] > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-glk5/igt@i915_selftest@live_execlists.html > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-glk8/igt@i915_selftest@live_execlists.html > > * igt@i915_selftest@live_hangcheck: > - shard-snb: [INCOMPLETE][90] ([fdo#105411]) -> [PASS][91] > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb5/igt@i915_selftest@live_hangcheck.html > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-snb1/igt@i915_selftest@live_hangcheck.html > > * igt@kms_color@pipe-b-ctm-0-5: > - shard-skl: [DMESG-WARN][92] ([fdo#106107]) -> [PASS][93] > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl9/igt@kms_color@pipe-b-ctm-0-5.html > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl10/igt@kms_color@pipe-b-ctm-0-5.html > > * igt@kms_flip@2x-flip-vs-expired-vblank: > - shard-glk: [FAIL][94] ([fdo#105363]) -> [PASS][95] > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank.html > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: > - shard-tglb: [FAIL][96] ([fdo#103167]) -> [PASS][97] +3 similar issues > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: > - shard-iclb: [FAIL][98] ([fdo#103167]) -> [PASS][99] +6 similar issues > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-suspend: > - shard-tglb: [INCOMPLETE][100] ([fdo#111832] / [fdo#111850] / [fdo#111884]) -> [PASS][101] > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html > > * igt@kms_psr@psr2_cursor_blt: > - shard-iclb: [SKIP][102] ([fdo#109441]) -> [PASS][103] +1 similar issue > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-iclb1/igt@kms_psr@psr2_cursor_blt.html > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html > > * igt@kms_psr@suspend: > - shard-skl: [INCOMPLETE][104] ([fdo#108972]) -> [PASS][105] > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-skl9/igt@kms_psr@suspend.html > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/shard-skl10/igt@kms_psr@suspend.html > > * igt@kms_vblank@pipe-b-wait-busy-hang: > - shard-snb: [SKIP][106] ([fdo#109271]) -> [PASS][107] +4 similar issues > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7323/shard-snb6/igt@kms_vblank@pipe-b-wait-busy-hang.html > [107]: http > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15245/index.html -- Matt Roper Graphics Software Engineer VTT-OSGC Platform Enablement Intel Corporation (916) 356-2795 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* [igt-dev] [PATCH i-g-t] i915/gem_mocs_settings: Update TGL MOCS table 2019-11-13 16:39 ` [Intel-gfx] " Matt Roper (?) @ 2019-11-13 16:51 ` Matt Roper -1 siblings, 0 replies; 26+ messages in thread From: Matt Roper @ 2019-11-13 16:51 UTC (permalink / raw) To: intel-gfx, igt-dev; +Cc: Lucas De Marchi, Francisco Jerez The TGL MOCS table was corrected in the bspec and the kernel. Since this test hardcodes its own copy of the MOCS table, we need to make corresponding fixes here. References: 046091758b50 ("Revert "drm/i915/ehl: Update MOCS table for EHL"") References: bfb0e8e63d86 ("drm/i915/tgl: MOCS table update") Cc: Prathap Kumar Valsan <prathap.kumar.valsan@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Cc: Francisco Jerez <francisco.jerez.plata@intel.com> Cc: Tomasz Lis <tomasz.lis@intel.com> Signed-off-by: Matt Roper <matthew.d.roper@intel.com> --- tests/i915/gem_mocs_settings.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/i915/gem_mocs_settings.c b/tests/i915/gem_mocs_settings.c index fc2ccb21..8f8f0768 100644 --- a/tests/i915/gem_mocs_settings.c +++ b/tests/i915/gem_mocs_settings.c @@ -95,8 +95,6 @@ static const struct mocs_entry tigerlake_mocs_table[GEN11_NUM_MOCS_ENTRIES] = { [13] = { 0x00000057, 0x0030, 0x1}, [14] = { 0x00000067, 0x0010, 0x1}, [15] = { 0x00000067, 0x0030, 0x1}, - [16] = { 0x00004005, 0x0010, 0x1}, - [17] = { 0x00004005, 0x0030, 0x1}, [18] = { 0x00060037, 0x0030, 0x1}, [19] = { 0x00000737, 0x0030, 0x1}, [20] = { 0x00000337, 0x0030, 0x1}, @@ -108,7 +106,7 @@ static const struct mocs_entry tigerlake_mocs_table[GEN11_NUM_MOCS_ENTRIES] = { [50] = { 0x00000037, 0x0010, 0x1}, [51] = { 0x00000005, 0x0010, 0x1}, [60] = { 0x00000037, 0x0010, 0x1}, - [61] = { 0x00004005, 0x0030, 0x1}, + [61] = { 0x00000005, 0x0030, 0x1}, [62] = { 0x00000037, 0x0010, 0x1}, [63] = { 0x00000037, 0x0010, 0x1}, }; -- 2.21.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 26+ messages in thread
* [Intel-gfx] [PATCH i-g-t] i915/gem_mocs_settings: Update TGL MOCS table @ 2019-11-13 16:51 ` Matt Roper 0 siblings, 0 replies; 26+ messages in thread From: Matt Roper @ 2019-11-13 16:51 UTC (permalink / raw) To: intel-gfx, igt-dev; +Cc: Lucas De Marchi, Francisco Jerez The TGL MOCS table was corrected in the bspec and the kernel. Since this test hardcodes its own copy of the MOCS table, we need to make corresponding fixes here. References: 046091758b50 ("Revert "drm/i915/ehl: Update MOCS table for EHL"") References: bfb0e8e63d86 ("drm/i915/tgl: MOCS table update") Cc: Prathap Kumar Valsan <prathap.kumar.valsan@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Cc: Francisco Jerez <francisco.jerez.plata@intel.com> Cc: Tomasz Lis <tomasz.lis@intel.com> Signed-off-by: Matt Roper <matthew.d.roper@intel.com> --- tests/i915/gem_mocs_settings.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/i915/gem_mocs_settings.c b/tests/i915/gem_mocs_settings.c index fc2ccb21..8f8f0768 100644 --- a/tests/i915/gem_mocs_settings.c +++ b/tests/i915/gem_mocs_settings.c @@ -95,8 +95,6 @@ static const struct mocs_entry tigerlake_mocs_table[GEN11_NUM_MOCS_ENTRIES] = { [13] = { 0x00000057, 0x0030, 0x1}, [14] = { 0x00000067, 0x0010, 0x1}, [15] = { 0x00000067, 0x0030, 0x1}, - [16] = { 0x00004005, 0x0010, 0x1}, - [17] = { 0x00004005, 0x0030, 0x1}, [18] = { 0x00060037, 0x0030, 0x1}, [19] = { 0x00000737, 0x0030, 0x1}, [20] = { 0x00000337, 0x0030, 0x1}, @@ -108,7 +106,7 @@ static const struct mocs_entry tigerlake_mocs_table[GEN11_NUM_MOCS_ENTRIES] = { [50] = { 0x00000037, 0x0010, 0x1}, [51] = { 0x00000005, 0x0010, 0x1}, [60] = { 0x00000037, 0x0010, 0x1}, - [61] = { 0x00004005, 0x0030, 0x1}, + [61] = { 0x00000005, 0x0030, 0x1}, [62] = { 0x00000037, 0x0010, 0x1}, [63] = { 0x00000037, 0x0010, 0x1}, }; -- 2.21.0 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 26+ messages in thread
* [PATCH i-g-t] i915/gem_mocs_settings: Update TGL MOCS table @ 2019-11-13 16:51 ` Matt Roper 0 siblings, 0 replies; 26+ messages in thread From: Matt Roper @ 2019-11-13 16:51 UTC (permalink / raw) To: intel-gfx, igt-dev; +Cc: Lucas De Marchi, Francisco Jerez The TGL MOCS table was corrected in the bspec and the kernel. Since this test hardcodes its own copy of the MOCS table, we need to make corresponding fixes here. References: 046091758b50 ("Revert "drm/i915/ehl: Update MOCS table for EHL"") References: bfb0e8e63d86 ("drm/i915/tgl: MOCS table update") Cc: Prathap Kumar Valsan <prathap.kumar.valsan@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Cc: Francisco Jerez <francisco.jerez.plata@intel.com> Cc: Tomasz Lis <tomasz.lis@intel.com> Signed-off-by: Matt Roper <matthew.d.roper@intel.com> --- tests/i915/gem_mocs_settings.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/i915/gem_mocs_settings.c b/tests/i915/gem_mocs_settings.c index fc2ccb21..8f8f0768 100644 --- a/tests/i915/gem_mocs_settings.c +++ b/tests/i915/gem_mocs_settings.c @@ -95,8 +95,6 @@ static const struct mocs_entry tigerlake_mocs_table[GEN11_NUM_MOCS_ENTRIES] = { [13] = { 0x00000057, 0x0030, 0x1}, [14] = { 0x00000067, 0x0010, 0x1}, [15] = { 0x00000067, 0x0030, 0x1}, - [16] = { 0x00004005, 0x0010, 0x1}, - [17] = { 0x00004005, 0x0030, 0x1}, [18] = { 0x00060037, 0x0030, 0x1}, [19] = { 0x00000737, 0x0030, 0x1}, [20] = { 0x00000337, 0x0030, 0x1}, @@ -108,7 +106,7 @@ static const struct mocs_entry tigerlake_mocs_table[GEN11_NUM_MOCS_ENTRIES] = { [50] = { 0x00000037, 0x0010, 0x1}, [51] = { 0x00000005, 0x0010, 0x1}, [60] = { 0x00000037, 0x0010, 0x1}, - [61] = { 0x00004005, 0x0030, 0x1}, + [61] = { 0x00000005, 0x0030, 0x1}, [62] = { 0x00000037, 0x0010, 0x1}, [63] = { 0x00000037, 0x0010, 0x1}, }; -- 2.21.0 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 26+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] i915/gem_mocs_settings: Update TGL MOCS table 2019-11-13 16:51 ` Matt Roper (?) @ 2019-11-13 21:25 ` Lucas De Marchi -1 siblings, 0 replies; 26+ messages in thread From: Lucas De Marchi @ 2019-11-13 21:25 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev, intel-gfx, Francisco Jerez On Wed, Nov 13, 2019 at 08:51:03AM -0800, Matt Roper wrote: >The TGL MOCS table was corrected in the bspec and the kernel. Since >this test hardcodes its own copy of the MOCS table, we need to make >corresponding fixes here. > >References: 046091758b50 ("Revert "drm/i915/ehl: Update MOCS table for EHL"") >References: bfb0e8e63d86 ("drm/i915/tgl: MOCS table update") >Cc: Prathap Kumar Valsan <prathap.kumar.valsan@intel.com> >Cc: Lucas De Marchi <lucas.demarchi@intel.com> >Cc: Francisco Jerez <francisco.jerez.plata@intel.com> >Cc: Tomasz Lis <tomasz.lis@intel.com> >Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Lucas De Marchi >--- > tests/i915/gem_mocs_settings.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > >diff --git a/tests/i915/gem_mocs_settings.c b/tests/i915/gem_mocs_settings.c >index fc2ccb21..8f8f0768 100644 >--- a/tests/i915/gem_mocs_settings.c >+++ b/tests/i915/gem_mocs_settings.c >@@ -95,8 +95,6 @@ static const struct mocs_entry tigerlake_mocs_table[GEN11_NUM_MOCS_ENTRIES] = { > [13] = { 0x00000057, 0x0030, 0x1}, > [14] = { 0x00000067, 0x0010, 0x1}, > [15] = { 0x00000067, 0x0030, 0x1}, >- [16] = { 0x00004005, 0x0010, 0x1}, >- [17] = { 0x00004005, 0x0030, 0x1}, > [18] = { 0x00060037, 0x0030, 0x1}, > [19] = { 0x00000737, 0x0030, 0x1}, > [20] = { 0x00000337, 0x0030, 0x1}, >@@ -108,7 +106,7 @@ static const struct mocs_entry tigerlake_mocs_table[GEN11_NUM_MOCS_ENTRIES] = { > [50] = { 0x00000037, 0x0010, 0x1}, > [51] = { 0x00000005, 0x0010, 0x1}, > [60] = { 0x00000037, 0x0010, 0x1}, >- [61] = { 0x00004005, 0x0030, 0x1}, >+ [61] = { 0x00000005, 0x0030, 0x1}, > [62] = { 0x00000037, 0x0010, 0x1}, > [63] = { 0x00000037, 0x0010, 0x1}, > }; >-- >2.21.0 > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [Intel-gfx] [PATCH i-g-t] i915/gem_mocs_settings: Update TGL MOCS table @ 2019-11-13 21:25 ` Lucas De Marchi 0 siblings, 0 replies; 26+ messages in thread From: Lucas De Marchi @ 2019-11-13 21:25 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev, intel-gfx, Francisco Jerez On Wed, Nov 13, 2019 at 08:51:03AM -0800, Matt Roper wrote: >The TGL MOCS table was corrected in the bspec and the kernel. Since >this test hardcodes its own copy of the MOCS table, we need to make >corresponding fixes here. > >References: 046091758b50 ("Revert "drm/i915/ehl: Update MOCS table for EHL"") >References: bfb0e8e63d86 ("drm/i915/tgl: MOCS table update") >Cc: Prathap Kumar Valsan <prathap.kumar.valsan@intel.com> >Cc: Lucas De Marchi <lucas.demarchi@intel.com> >Cc: Francisco Jerez <francisco.jerez.plata@intel.com> >Cc: Tomasz Lis <tomasz.lis@intel.com> >Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Lucas De Marchi >--- > tests/i915/gem_mocs_settings.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > >diff --git a/tests/i915/gem_mocs_settings.c b/tests/i915/gem_mocs_settings.c >index fc2ccb21..8f8f0768 100644 >--- a/tests/i915/gem_mocs_settings.c >+++ b/tests/i915/gem_mocs_settings.c >@@ -95,8 +95,6 @@ static const struct mocs_entry tigerlake_mocs_table[GEN11_NUM_MOCS_ENTRIES] = { > [13] = { 0x00000057, 0x0030, 0x1}, > [14] = { 0x00000067, 0x0010, 0x1}, > [15] = { 0x00000067, 0x0030, 0x1}, >- [16] = { 0x00004005, 0x0010, 0x1}, >- [17] = { 0x00004005, 0x0030, 0x1}, > [18] = { 0x00060037, 0x0030, 0x1}, > [19] = { 0x00000737, 0x0030, 0x1}, > [20] = { 0x00000337, 0x0030, 0x1}, >@@ -108,7 +106,7 @@ static const struct mocs_entry tigerlake_mocs_table[GEN11_NUM_MOCS_ENTRIES] = { > [50] = { 0x00000037, 0x0010, 0x1}, > [51] = { 0x00000005, 0x0010, 0x1}, > [60] = { 0x00000037, 0x0010, 0x1}, >- [61] = { 0x00004005, 0x0030, 0x1}, >+ [61] = { 0x00000005, 0x0030, 0x1}, > [62] = { 0x00000037, 0x0010, 0x1}, > [63] = { 0x00000037, 0x0010, 0x1}, > }; >-- >2.21.0 > _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH i-g-t] i915/gem_mocs_settings: Update TGL MOCS table @ 2019-11-13 21:25 ` Lucas De Marchi 0 siblings, 0 replies; 26+ messages in thread From: Lucas De Marchi @ 2019-11-13 21:25 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev, intel-gfx, Francisco Jerez On Wed, Nov 13, 2019 at 08:51:03AM -0800, Matt Roper wrote: >The TGL MOCS table was corrected in the bspec and the kernel. Since >this test hardcodes its own copy of the MOCS table, we need to make >corresponding fixes here. > >References: 046091758b50 ("Revert "drm/i915/ehl: Update MOCS table for EHL"") >References: bfb0e8e63d86 ("drm/i915/tgl: MOCS table update") >Cc: Prathap Kumar Valsan <prathap.kumar.valsan@intel.com> >Cc: Lucas De Marchi <lucas.demarchi@intel.com> >Cc: Francisco Jerez <francisco.jerez.plata@intel.com> >Cc: Tomasz Lis <tomasz.lis@intel.com> >Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Lucas De Marchi >--- > tests/i915/gem_mocs_settings.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > >diff --git a/tests/i915/gem_mocs_settings.c b/tests/i915/gem_mocs_settings.c >index fc2ccb21..8f8f0768 100644 >--- a/tests/i915/gem_mocs_settings.c >+++ b/tests/i915/gem_mocs_settings.c >@@ -95,8 +95,6 @@ static const struct mocs_entry tigerlake_mocs_table[GEN11_NUM_MOCS_ENTRIES] = { > [13] = { 0x00000057, 0x0030, 0x1}, > [14] = { 0x00000067, 0x0010, 0x1}, > [15] = { 0x00000067, 0x0030, 0x1}, >- [16] = { 0x00004005, 0x0010, 0x1}, >- [17] = { 0x00004005, 0x0030, 0x1}, > [18] = { 0x00060037, 0x0030, 0x1}, > [19] = { 0x00000737, 0x0030, 0x1}, > [20] = { 0x00000337, 0x0030, 0x1}, >@@ -108,7 +106,7 @@ static const struct mocs_entry tigerlake_mocs_table[GEN11_NUM_MOCS_ENTRIES] = { > [50] = { 0x00000037, 0x0010, 0x1}, > [51] = { 0x00000005, 0x0010, 0x1}, > [60] = { 0x00000037, 0x0010, 0x1}, >- [61] = { 0x00004005, 0x0030, 0x1}, >+ [61] = { 0x00000005, 0x0030, 0x1}, > [62] = { 0x00000037, 0x0010, 0x1}, > [63] = { 0x00000037, 0x0010, 0x1}, > }; >-- >2.21.0 > _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 26+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_mocs_settings: Update TGL MOCS table 2019-11-12 22:47 ` [Intel-gfx] " Matt Roper ` (4 preceding siblings ...) (?) @ 2019-11-13 17:41 ` Patchwork -1 siblings, 0 replies; 26+ messages in thread From: Patchwork @ 2019-11-13 17:41 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev == Series Details == Series: i915/gem_mocs_settings: Update TGL MOCS table URL : https://patchwork.freedesktop.org/series/69414/ State : success == Summary == CI Bug Log - changes from CI_DRM_7332 -> IGTPW_3694 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/index.html Known issues ------------ Here are the changes found in IGTPW_3694 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_setmode@basic-clone-single-crtc: - fi-skl-6770hq: [PASS][1] -> [WARN][2] ([fdo#112252]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/fi-skl-6770hq/igt@kms_setmode@basic-clone-single-crtc.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/fi-skl-6770hq/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-hsw-4770: [SKIP][3] ([fdo#109271]) -> [PASS][4] +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@module-reload: - fi-skl-lmem: [DMESG-WARN][5] ([fdo#112261]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live_hangcheck: - fi-hsw-4770r: [DMESG-FAIL][7] ([fdo#111991]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/fi-hsw-4770r/igt@i915_selftest@live_hangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/fi-hsw-4770r/igt@i915_selftest@live_hangcheck.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [FAIL][9] ([fdo#111407]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407 [fdo#111991]: https://bugs.freedesktop.org/show_bug.cgi?id=111991 [fdo#112252]: https://bugs.freedesktop.org/show_bug.cgi?id=112252 [fdo#112261]: https://bugs.freedesktop.org/show_bug.cgi?id=112261 Participating hosts (52 -> 46) ------------------------------ Missing (6): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5276 -> IGTPW_3694 CI-20190529: 20190529 CI_DRM_7332: e8c9ce4930c1451ad4a43449fdf2c882da8921e8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3694: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/index.html IGT_5276: 868d38c2bc075b6756ebed486db6e7152ed2c5be @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 26+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for i915/gem_mocs_settings: Update TGL MOCS table 2019-11-12 22:47 ` [Intel-gfx] " Matt Roper ` (5 preceding siblings ...) (?) @ 2019-11-14 8:35 ` Patchwork -1 siblings, 0 replies; 26+ messages in thread From: Patchwork @ 2019-11-14 8:35 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev == Series Details == Series: i915/gem_mocs_settings: Update TGL MOCS table URL : https://patchwork.freedesktop.org/series/69414/ State : success == Summary == CI Bug Log - changes from CI_DRM_7332_full -> IGTPW_3694_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/index.html Known issues ------------ Here are the changes found in IGTPW_3694_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_busy@busy-vcs1: - shard-iclb: [PASS][1] -> [SKIP][2] ([fdo#112080]) +10 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb1/igt@gem_busy@busy-vcs1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb3/igt@gem_busy@busy-vcs1.html * igt@gem_ctx_isolation@vcs0-s3: - shard-tglb: [PASS][3] -> [INCOMPLETE][4] ([fdo#111832]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb9/igt@gem_ctx_isolation@vcs0-s3.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb4/igt@gem_ctx_isolation@vcs0-s3.html * igt@gem_ctx_isolation@vcs1-clean: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#109276] / [fdo#112080]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb2/igt@gem_ctx_isolation@vcs1-clean.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb3/igt@gem_ctx_isolation@vcs1-clean.html * igt@gem_eio@unwedge-stress: - shard-tglb: [PASS][7] -> [INCOMPLETE][8] ([fdo#111866]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb7/igt@gem_eio@unwedge-stress.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb6/igt@gem_eio@unwedge-stress.html * igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd: - shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#112146]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb6/igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb1/igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd.html * igt@gem_userptr_blits@dmabuf-sync: - shard-snb: [PASS][11] -> [DMESG-WARN][12] ([fdo#111870]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-snb2/igt@gem_userptr_blits@dmabuf-sync.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-snb6/igt@gem_userptr_blits@dmabuf-sync.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [PASS][13] -> [FAIL][14] ([fdo#111830 ]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb8/igt@i915_pm_dc@dc6-dpms.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb8/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@system-suspend: - shard-tglb: [PASS][15] -> [INCOMPLETE][16] ([fdo#111747] / [fdo#111850]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb9/igt@i915_pm_rpm@system-suspend.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb1/igt@i915_pm_rpm@system-suspend.html * igt@i915_selftest@mock_requests: - shard-glk: [PASS][17] -> [DMESG-WARN][18] ([fdo#112158]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-glk5/igt@i915_selftest@mock_requests.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-glk2/igt@i915_selftest@mock_requests.html * igt@i915_suspend@forcewake: - shard-kbl: [PASS][19] -> [DMESG-WARN][20] ([fdo#108566]) +3 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-kbl3/igt@i915_suspend@forcewake.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-kbl7/igt@i915_suspend@forcewake.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-glk: [PASS][21] -> [FAIL][22] ([fdo#104873]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-tglb: [PASS][23] -> [FAIL][24] ([fdo#103167]) +3 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-iclb: [PASS][25] -> [FAIL][26] ([fdo#103167]) +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-tglb: [PASS][27] -> [INCOMPLETE][28] ([fdo#111832] / [fdo#111850]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb9/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb5/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [PASS][29] -> [SKIP][30] ([fdo#109441]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@prime_busy@hang-bsd2: - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109276]) +11 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb4/igt@prime_busy@hang-bsd2.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb6/igt@prime_busy@hang-bsd2.html * igt@vgem_basic@unload: - shard-kbl: [PASS][33] -> [SKIP][34] ([fdo#109271]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-kbl1/igt@vgem_basic@unload.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-kbl2/igt@vgem_basic@unload.html - shard-iclb: [PASS][35] -> [SKIP][36] ([fdo#110272]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb3/igt@vgem_basic@unload.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb2/igt@vgem_basic@unload.html #### Possible fixes #### * igt@gem_ctx_persistence@vcs1-queued: - shard-iclb: [SKIP][37] ([fdo#109276] / [fdo#112080]) -> [PASS][38] +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb3/igt@gem_ctx_persistence@vcs1-queued.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb2/igt@gem_ctx_persistence@vcs1-queued.html * igt@gem_ctx_switch@vcs1-heavy: - shard-iclb: [SKIP][39] ([fdo#112080]) -> [PASS][40] +5 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb8/igt@gem_ctx_switch@vcs1-heavy.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb2/igt@gem_ctx_switch@vcs1-heavy.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [SKIP][41] ([fdo#112146]) -> [PASS][42] +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb8/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_schedule@promotion-bsd1: - shard-iclb: [SKIP][43] ([fdo#109276]) -> [PASS][44] +17 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb6/igt@gem_exec_schedule@promotion-bsd1.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb4/igt@gem_exec_schedule@promotion-bsd1.html * igt@gem_exec_suspend@basic-s0: - shard-tglb: [INCOMPLETE][45] ([fdo#111832]) -> [PASS][46] +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb7/igt@gem_exec_suspend@basic-s0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb1/igt@gem_exec_suspend@basic-s0.html * igt@gem_mocs_settings@mocs-isolation-vebox: - shard-tglb: [FAIL][47] ([fdo#111330]) -> [PASS][48] +4 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb2/igt@gem_mocs_settings@mocs-isolation-vebox.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb3/igt@gem_mocs_settings@mocs-isolation-vebox.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-snb: [DMESG-WARN][49] ([fdo#111870]) -> [PASS][50] +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@sync-unmap-after-close: - shard-hsw: [DMESG-WARN][51] ([fdo#111870]) -> [PASS][52] +2 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-hsw2/igt@gem_userptr_blits@sync-unmap-after-close.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-hsw5/igt@gem_userptr_blits@sync-unmap-after-close.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][53] ([fdo#111830 ]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb2/igt@i915_pm_dc@dc6-psr.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb5/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-tglb: [INCOMPLETE][55] ([fdo#111832] / [fdo#111850]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb7/igt@i915_pm_rpm@system-suspend-execbuf.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb8/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@kms_cursor_crc@pipe-a-cursor-256x256-sliding: - shard-hsw: [INCOMPLETE][57] ([fdo#103540]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-hsw4/igt@kms_cursor_crc@pipe-a-cursor-256x256-sliding.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-hsw4/igt@kms_cursor_crc@pipe-a-cursor-256x256-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-suspend: - shard-apl: [INCOMPLETE][59] ([fdo#103927]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-tglb: [INCOMPLETE][61] ([fdo#111832] / [fdo#111850] / [fdo#112031]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb4/igt@kms_flip@flip-vs-suspend-interruptible.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb9/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-apl: [DMESG-WARN][63] ([fdo#108566]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-iclb: [FAIL][65] ([fdo#103167]) -> [PASS][66] +6 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence: - shard-tglb: [FAIL][67] ([fdo#103167]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [SKIP][69] ([fdo#109441]) -> [PASS][70] +3 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb3/igt@kms_psr@psr2_no_drrs.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb2/igt@kms_psr@psr2_no_drrs.html * igt@kms_setmode@basic: - shard-apl: [FAIL][71] ([fdo#99912]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-apl6/igt@kms_setmode@basic.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-apl4/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-tglb: [INCOMPLETE][73] ([fdo#111850]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb2/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb9/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html #### Warnings #### * igt@gem_ctx_isolation@vcs2-none: - shard-tglb: [SKIP][75] ([fdo#112080]) -> [SKIP][76] ([fdo#111912] / [fdo#112080]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb9/igt@gem_ctx_isolation@vcs2-none.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb2/igt@gem_ctx_isolation@vcs2-none.html * igt@gem_eio@kms: - shard-snb: [INCOMPLETE][77] ([fdo#105411]) -> [DMESG-FAIL][78] ([fdo#111757]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-snb6/igt@gem_eio@kms.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-snb7/igt@gem_eio@kms.html * igt@gem_exec_schedule@deep-bsd2: - shard-tglb: [INCOMPLETE][79] ([fdo#111671]) -> [FAIL][80] ([fdo#111646]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb8/igt@gem_exec_schedule@deep-bsd2.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb9/igt@gem_exec_schedule@deep-bsd2.html * igt@gem_mocs_settings@mocs-rc6-bsd2: - shard-iclb: [SKIP][81] ([fdo#109276]) -> [FAIL][82] ([fdo#111330]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-iclb7/igt@gem_mocs_settings@mocs-rc6-bsd2.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-iclb2/igt@gem_mocs_settings@mocs-rc6-bsd2.html * igt@kms_atomic_transition@6x-modeset-transitions-nonblocking-fencing: - shard-tglb: [SKIP][83] ([fdo#112021 ]) -> [SKIP][84] ([fdo#112016 ] / [fdo#112021 ]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7332/shard-tglb9/igt@kms_atomic_transition@6x-modeset-transitions-nonblocking-fencing.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/shard-tglb8/igt@kms_atomic_transition@6x-modeset-transitions-nonblocking-fencing.html [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#104873]: https://bugs.freedesktop.org/show_bug.cgi?id=104873 [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110272]: https://bugs.freedesktop.org/show_bug.cgi?id=110272 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646 [fdo#111671]: https://bugs.freedesktop.org/show_bug.cgi?id=111671 [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747 [fdo#111757]: https://bugs.freedesktop.org/show_bug.cgi?id=111757 [fdo#111830 ]: https://bugs.freedesktop.org/show_bug.cgi?id=111830 [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832 [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850 [fdo#111866]: https://bugs.freedesktop.org/show_bug.cgi?id=111866 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#111912]: https://bugs.freedesktop.org/show_bug.cgi?id=111912 [fdo#112016 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112016 [fdo#112021 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112021 [fdo#112031]: https://bugs.freedesktop.org/show_bug.cgi?id=112031 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [fdo#112158]: https://bugs.freedesktop.org/show_bug.cgi?id=112158 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-glk-j5005 pig-hsw-4770r Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5276 -> IGTPW_3694 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_7332: e8c9ce4930c1451ad4a43449fdf2c882da8921e8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3694: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/index.html IGT_5276: 868d38c2bc075b6756ebed486db6e7152ed2c5be @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3694/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 26+ messages in thread
end of thread, other threads:[~2019-11-14 8:35 UTC | newest] Thread overview: 26+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-11-12 22:47 [PATCH v3 1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" Matt Roper 2019-11-12 22:47 ` [Intel-gfx] " Matt Roper 2019-11-12 22:47 ` [PATCH v3 2/2] drm/i915/tgl: MOCS table update Matt Roper 2019-11-12 22:47 ` [Intel-gfx] " Matt Roper 2019-11-12 23:20 ` Francisco Jerez 2019-11-12 23:20 ` [Intel-gfx] " Francisco Jerez 2019-11-13 1:09 ` Lucas De Marchi 2019-11-13 1:09 ` [Intel-gfx] " Lucas De Marchi 2019-11-13 12:58 ` Lis, Tomasz 2019-11-13 12:58 ` [Intel-gfx] " Lis, Tomasz 2019-11-12 23:15 ` [PATCH v3 1/2] Revert "drm/i915/ehl: Update MOCS table for EHL" Francisco Jerez 2019-11-12 23:15 ` [Intel-gfx] " Francisco Jerez 2019-11-13 0:32 ` ✓ Fi.CI.BAT: success for series starting with [v3,1/2] " Patchwork 2019-11-13 0:32 ` [Intel-gfx] " Patchwork 2019-11-13 11:49 ` ✗ Fi.CI.IGT: failure " Patchwork 2019-11-13 11:49 ` [Intel-gfx] " Patchwork 2019-11-13 16:39 ` Matt Roper 2019-11-13 16:39 ` [Intel-gfx] " Matt Roper 2019-11-13 16:51 ` [igt-dev] [PATCH i-g-t] i915/gem_mocs_settings: Update TGL MOCS table Matt Roper 2019-11-13 16:51 ` [Intel-gfx] " Matt Roper 2019-11-13 16:51 ` Matt Roper 2019-11-13 21:25 ` [igt-dev] " Lucas De Marchi 2019-11-13 21:25 ` [Intel-gfx] " Lucas De Marchi 2019-11-13 21:25 ` Lucas De Marchi 2019-11-13 17:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-11-14 8:35 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.