All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/tgl: Add the Thunderbolt PLL divider values
@ 2019-10-02 14:08 Imre Deak
  2019-10-02 19:46 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
                   ` (8 more replies)
  0 siblings, 9 replies; 13+ messages in thread
From: Imre Deak @ 2019-10-02 14:08 UTC (permalink / raw)
  To: intel-gfx; +Cc: Mika Westerberg, Lucas De Marchi

The Thunderbolt PLL divider values on TGL differ from the ICL ones,
update the PLL parameter calculation function accordingly.

Bspec: 49204

Cc: Jose Souza <jose.souza@intel.com>
Cc: Clinton A Taylor <clinton.a.taylor@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Mika Westerberg <mika.westerberg@intel.com>
Tested-by: Mika Westerberg <mika.westerberg@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dpll_mgr.c | 51 ++++++++++++++++++-
 1 file changed, 49 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dpll_mgr.c b/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
index be69a2344294..7b0b18d95b07 100644
--- a/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
+++ b/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
@@ -2520,6 +2520,24 @@ static const struct skl_wrpll_params icl_tbt_pll_19_2MHz_values = {
 	.pdiv = 0x4 /* 5 */, .kdiv = 1, .qdiv_mode = 0, .qdiv_ratio = 0,
 };
 
+static const struct skl_wrpll_params tgl_tbt_pll_19_2MHz_values = {
+	.dco_integer = 0x54, .dco_fraction = 0x3000,
+	/* the following params are unused */
+	.pdiv = 0, .kdiv = 0, .qdiv_mode = 0, .qdiv_ratio = 0,
+};
+
+static const struct skl_wrpll_params tgl_tbt_pll_24MHz_values = {
+	.dco_integer = 0x43, .dco_fraction = 0x4000,
+	/* the following params are unused */
+	.pdiv = 0, .kdiv = 0, .qdiv_mode = 0, .qdiv_ratio = 0,
+};
+
+static const struct skl_wrpll_params tgl_tbt_pll_25MHz_values = {
+	.dco_integer = 0x40, .dco_fraction = 0x6666,
+	/* the following params are unused */
+	.pdiv = 0, .kdiv = 0, .qdiv_mode = 0, .qdiv_ratio = 0,
+};
+
 static bool icl_calc_dp_combo_pll(struct intel_crtc_state *crtc_state,
 				  struct skl_wrpll_params *pll_params)
 {
@@ -2547,8 +2565,37 @@ static bool icl_calc_tbt_pll(struct intel_crtc_state *crtc_state,
 {
 	struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
 
-	*pll_params = dev_priv->cdclk.hw.ref == 24000 ?
-			icl_tbt_pll_24MHz_values : icl_tbt_pll_19_2MHz_values;
+	if (INTEL_GEN(dev_priv) >= 12) {
+		switch (dev_priv->cdclk.hw.ref) {
+		default:
+			MISSING_CASE(dev_priv->cdclk.hw.ref);
+			/* fall-through */
+		case 19200:
+		case 38400:
+			*pll_params = tgl_tbt_pll_19_2MHz_values;
+			break;
+		case 24000:
+			*pll_params = tgl_tbt_pll_24MHz_values;
+			break;
+		case 25000:
+			*pll_params = tgl_tbt_pll_25MHz_values;
+			break;
+		}
+	} else {
+		switch (dev_priv->cdclk.hw.ref) {
+		default:
+			MISSING_CASE(dev_priv->cdclk.hw.ref);
+			/* fall-through */
+		case 19200:
+		case 38400:
+			*pll_params = icl_tbt_pll_19_2MHz_values;
+			break;
+		case 24000:
+			*pll_params = icl_tbt_pll_24MHz_values;
+			break;
+		}
+	}
+
 	return true;
 }
 
-- 
2.17.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* ✗ Fi.CI.CHECKPATCH: warning for drm/i915/tgl: Add the Thunderbolt PLL divider values
  2019-10-02 14:08 [PATCH] drm/i915/tgl: Add the Thunderbolt PLL divider values Imre Deak
@ 2019-10-02 19:46 ` Patchwork
  2019-10-02 20:07 ` [PATCH] " Souza, Jose
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2019-10-02 19:46 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/tgl: Add the Thunderbolt PLL divider values
URL   : https://patchwork.freedesktop.org/series/67498/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
8dc00b06f596 drm/i915/tgl: Add the Thunderbolt PLL divider values
-:26: CHECK:CAMELCASE: Avoid CamelCase: <tgl_tbt_pll_19_2MHz_values>
#26: FILE: drivers/gpu/drm/i915/display/intel_dpll_mgr.c:2523:
+static const struct skl_wrpll_params tgl_tbt_pll_19_2MHz_values = {

-:32: CHECK:CAMELCASE: Avoid CamelCase: <tgl_tbt_pll_24MHz_values>
#32: FILE: drivers/gpu/drm/i915/display/intel_dpll_mgr.c:2529:
+static const struct skl_wrpll_params tgl_tbt_pll_24MHz_values = {

-:38: CHECK:CAMELCASE: Avoid CamelCase: <tgl_tbt_pll_25MHz_values>
#38: FILE: drivers/gpu/drm/i915/display/intel_dpll_mgr.c:2535:
+static const struct skl_wrpll_params tgl_tbt_pll_25MHz_values = {

-:76: CHECK:CAMELCASE: Avoid CamelCase: <icl_tbt_pll_19_2MHz_values>
#76: FILE: drivers/gpu/drm/i915/display/intel_dpll_mgr.c:2591:
+			*pll_params = icl_tbt_pll_19_2MHz_values;

-:79: CHECK:CAMELCASE: Avoid CamelCase: <icl_tbt_pll_24MHz_values>
#79: FILE: drivers/gpu/drm/i915/display/intel_dpll_mgr.c:2594:
+			*pll_params = icl_tbt_pll_24MHz_values;

total: 0 errors, 0 warnings, 5 checks, 63 lines checked

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] drm/i915/tgl: Add the Thunderbolt PLL divider values
  2019-10-02 14:08 [PATCH] drm/i915/tgl: Add the Thunderbolt PLL divider values Imre Deak
  2019-10-02 19:46 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
@ 2019-10-02 20:07 ` Souza, Jose
  2019-10-02 20:25   ` Imre Deak
  2019-10-02 20:10 ` ✓ Fi.CI.BAT: success for " Patchwork
                   ` (6 subsequent siblings)
  8 siblings, 1 reply; 13+ messages in thread
From: Souza, Jose @ 2019-10-02 20:07 UTC (permalink / raw)
  To: intel-gfx, Deak, Imre; +Cc: Westerberg, Mika, De Marchi, Lucas

On Wed, 2019-10-02 at 17:08 +0300, Imre Deak wrote:
> The Thunderbolt PLL divider values on TGL differ from the ICL ones,
> update the PLL parameter calculation function accordingly.
> 
> Bspec: 49204
> 
> Cc: Jose Souza <jose.souza@intel.com>
> Cc: Clinton A Taylor <clinton.a.taylor@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Mika Westerberg <mika.westerberg@intel.com>
> Tested-by: Mika Westerberg <mika.westerberg@intel.com>
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_dpll_mgr.c | 51
> ++++++++++++++++++-
>  1 file changed, 49 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> b/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> index be69a2344294..7b0b18d95b07 100644
> --- a/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> +++ b/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> @@ -2520,6 +2520,24 @@ static const struct skl_wrpll_params
> icl_tbt_pll_19_2MHz_values = {
>  	.pdiv = 0x4 /* 5 */, .kdiv = 1, .qdiv_mode = 0, .qdiv_ratio =
> 0,
>  };
>  
> +static const struct skl_wrpll_params tgl_tbt_pll_19_2MHz_values = {
> +	.dco_integer = 0x54, .dco_fraction = 0x3000,
> +	/* the following params are unused */
> +	.pdiv = 0, .kdiv = 0, .qdiv_mode = 0, .qdiv_ratio = 0,
> +};
> +
> +static const struct skl_wrpll_params tgl_tbt_pll_24MHz_values = {
> +	.dco_integer = 0x43, .dco_fraction = 0x4000,
> +	/* the following params are unused */
> +	.pdiv = 0, .kdiv = 0, .qdiv_mode = 0, .qdiv_ratio = 0,
> +};
> +
> +static const struct skl_wrpll_params tgl_tbt_pll_25MHz_values = {
> +	.dco_integer = 0x40, .dco_fraction = 0x6666,
> +	/* the following params are unused */
> +	.pdiv = 0, .kdiv = 0, .qdiv_mode = 0, .qdiv_ratio = 0,
> +};


25MHz reference frequency is not POR it was just a test by HW team and
we don't even support it in icl_readout_refclk(), not sure if we should
add it here.

Other than that, LGTM:

Reviewed-by: José Roberto de Souza <jose.souza@intel.com>

> +
>  static bool icl_calc_dp_combo_pll(struct intel_crtc_state
> *crtc_state,
>  				  struct skl_wrpll_params *pll_params)
>  {
> @@ -2547,8 +2565,37 @@ static bool icl_calc_tbt_pll(struct
> intel_crtc_state *crtc_state,
>  {
>  	struct drm_i915_private *dev_priv = to_i915(crtc_state-
> >base.crtc->dev);
>  
> -	*pll_params = dev_priv->cdclk.hw.ref == 24000 ?
> -			icl_tbt_pll_24MHz_values :
> icl_tbt_pll_19_2MHz_values;
> +	if (INTEL_GEN(dev_priv) >= 12) {
> +		switch (dev_priv->cdclk.hw.ref) {
> +		default:
> +			MISSING_CASE(dev_priv->cdclk.hw.ref);
> +			/* fall-through */
> +		case 19200:
> +		case 38400:
> +			*pll_params = tgl_tbt_pll_19_2MHz_values;
> +			break;
> +		case 24000:
> +			*pll_params = tgl_tbt_pll_24MHz_values;
> +			break;
> +		case 25000:
> +			*pll_params = tgl_tbt_pll_25MHz_values;
> +			break;
> +		}
> +	} else {
> +		switch (dev_priv->cdclk.hw.ref) {
> +		default:
> +			MISSING_CASE(dev_priv->cdclk.hw.ref);
> +			/* fall-through */
> +		case 19200:
> +		case 38400:
> +			*pll_params = icl_tbt_pll_19_2MHz_values;
> +			break;
> +		case 24000:
> +			*pll_params = icl_tbt_pll_24MHz_values;
> +			break;
> +		}
> +	}
> +
>  	return true;
>  }
>  
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 13+ messages in thread

* ✓ Fi.CI.BAT: success for drm/i915/tgl: Add the Thunderbolt PLL divider values
  2019-10-02 14:08 [PATCH] drm/i915/tgl: Add the Thunderbolt PLL divider values Imre Deak
  2019-10-02 19:46 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
  2019-10-02 20:07 ` [PATCH] " Souza, Jose
@ 2019-10-02 20:10 ` Patchwork
  2019-10-02 20:41 ` [PATCH v2] " Imre Deak
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2019-10-02 20:10 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/tgl: Add the Thunderbolt PLL divider values
URL   : https://patchwork.freedesktop.org/series/67498/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6992 -> Patchwork_14632
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14632/index.html

Known issues
------------

  Here are the changes found in Patchwork_14632 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_mmap_gtt@basic-short:
    - fi-icl-u3:          [PASS][1] -> [DMESG-WARN][2] ([fdo#107724]) +2 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6992/fi-icl-u3/igt@gem_mmap_gtt@basic-short.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14632/fi-icl-u3/igt@gem_mmap_gtt@basic-short.html

  * igt@i915_module_load@reload:
    - fi-icl-u3:          [PASS][3] -> [DMESG-WARN][4] ([fdo#107724] / [fdo#111214])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6992/fi-icl-u3/igt@i915_module_load@reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14632/fi-icl-u3/igt@i915_module_load@reload.html

  
#### Possible fixes ####

  * igt@gem_mmap_gtt@basic:
    - fi-icl-u3:          [DMESG-WARN][5] ([fdo#107724]) -> [PASS][6] +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6992/fi-icl-u3/igt@gem_mmap_gtt@basic.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14632/fi-icl-u3/igt@gem_mmap_gtt@basic.html

  * {igt@i915_selftest@live_gt_timelines}:
    - {fi-tgl-u}:         [INCOMPLETE][7] ([fdo#111831]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6992/fi-tgl-u/igt@i915_selftest@live_gt_timelines.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14632/fi-tgl-u/igt@i915_selftest@live_gt_timelines.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
  [fdo#111214]: https://bugs.freedesktop.org/show_bug.cgi?id=111214
  [fdo#111831]: https://bugs.freedesktop.org/show_bug.cgi?id=111831


Participating hosts (51 -> 45)
------------------------------

  Additional (1): fi-kbl-7500u 
  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus 


Build changes
-------------

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_6992 -> Patchwork_14632

  CI-20190529: 20190529
  CI_DRM_6992: 7116520f059e12d50596bdbe73b48ba8e8d50daf @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5210: 74f55119f9920b65996535210a09147997804136 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14632: 8dc00b06f59621bcd8adfbe54afa24480d7cef88 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

8dc00b06f596 drm/i915/tgl: Add the Thunderbolt PLL divider values

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14632/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] drm/i915/tgl: Add the Thunderbolt PLL divider values
  2019-10-02 20:07 ` [PATCH] " Souza, Jose
@ 2019-10-02 20:25   ` Imre Deak
  0 siblings, 0 replies; 13+ messages in thread
From: Imre Deak @ 2019-10-02 20:25 UTC (permalink / raw)
  To: Souza, Jose; +Cc: intel-gfx, De Marchi, Lucas, Westerberg, Mika

On Wed, Oct 02, 2019 at 11:07:21PM +0300, Souza, Jose wrote:
> On Wed, 2019-10-02 at 17:08 +0300, Imre Deak wrote:
> > The Thunderbolt PLL divider values on TGL differ from the ICL ones,
> > update the PLL parameter calculation function accordingly.
> > 
> > Bspec: 49204
> > 
> > Cc: Jose Souza <jose.souza@intel.com>
> > Cc: Clinton A Taylor <clinton.a.taylor@intel.com>
> > Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> > Cc: Mika Westerberg <mika.westerberg@intel.com>
> > Tested-by: Mika Westerberg <mika.westerberg@intel.com>
> > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > ---
> >  drivers/gpu/drm/i915/display/intel_dpll_mgr.c | 51
> > ++++++++++++++++++-
> >  1 file changed, 49 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> > b/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> > index be69a2344294..7b0b18d95b07 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
> > @@ -2520,6 +2520,24 @@ static const struct skl_wrpll_params
> > icl_tbt_pll_19_2MHz_values = {
> >  	.pdiv = 0x4 /* 5 */, .kdiv = 1, .qdiv_mode = 0, .qdiv_ratio =
> > 0,
> >  };
> >  
> > +static const struct skl_wrpll_params tgl_tbt_pll_19_2MHz_values = {
> > +	.dco_integer = 0x54, .dco_fraction = 0x3000,
> > +	/* the following params are unused */
> > +	.pdiv = 0, .kdiv = 0, .qdiv_mode = 0, .qdiv_ratio = 0,
> > +};
> > +
> > +static const struct skl_wrpll_params tgl_tbt_pll_24MHz_values = {
> > +	.dco_integer = 0x43, .dco_fraction = 0x4000,
> > +	/* the following params are unused */
> > +	.pdiv = 0, .kdiv = 0, .qdiv_mode = 0, .qdiv_ratio = 0,
> > +};
> > +
> > +static const struct skl_wrpll_params tgl_tbt_pll_25MHz_values = {
> > +	.dco_integer = 0x40, .dco_fraction = 0x6666,
> > +	/* the following params are unused */
> > +	.pdiv = 0, .kdiv = 0, .qdiv_mode = 0, .qdiv_ratio = 0,
> > +};
> 
> 
> 25MHz reference frequency is not POR it was just a test by HW team and
> we don't even support it in icl_readout_refclk(), not sure if we should
> add it here.

Ah yes, thanks for spotting that, I missed that info in bspec. Will
remove it.

> 
> Other than that, LGTM:
> 
> Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
> 
> > +
> >  static bool icl_calc_dp_combo_pll(struct intel_crtc_state
> > *crtc_state,
> >  				  struct skl_wrpll_params *pll_params)
> >  {
> > @@ -2547,8 +2565,37 @@ static bool icl_calc_tbt_pll(struct
> > intel_crtc_state *crtc_state,
> >  {
> >  	struct drm_i915_private *dev_priv = to_i915(crtc_state-
> > >base.crtc->dev);
> >  
> > -	*pll_params = dev_priv->cdclk.hw.ref == 24000 ?
> > -			icl_tbt_pll_24MHz_values :
> > icl_tbt_pll_19_2MHz_values;
> > +	if (INTEL_GEN(dev_priv) >= 12) {
> > +		switch (dev_priv->cdclk.hw.ref) {
> > +		default:
> > +			MISSING_CASE(dev_priv->cdclk.hw.ref);
> > +			/* fall-through */
> > +		case 19200:
> > +		case 38400:
> > +			*pll_params = tgl_tbt_pll_19_2MHz_values;
> > +			break;
> > +		case 24000:
> > +			*pll_params = tgl_tbt_pll_24MHz_values;
> > +			break;
> > +		case 25000:
> > +			*pll_params = tgl_tbt_pll_25MHz_values;
> > +			break;
> > +		}
> > +	} else {
> > +		switch (dev_priv->cdclk.hw.ref) {
> > +		default:
> > +			MISSING_CASE(dev_priv->cdclk.hw.ref);
> > +			/* fall-through */
> > +		case 19200:
> > +		case 38400:
> > +			*pll_params = icl_tbt_pll_19_2MHz_values;
> > +			break;
> > +		case 24000:
> > +			*pll_params = icl_tbt_pll_24MHz_values;
> > +			break;
> > +		}
> > +	}
> > +
> >  	return true;
> >  }
> >  
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [PATCH v2] drm/i915/tgl: Add the Thunderbolt PLL divider values
  2019-10-02 14:08 [PATCH] drm/i915/tgl: Add the Thunderbolt PLL divider values Imre Deak
                   ` (2 preceding siblings ...)
  2019-10-02 20:10 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-10-02 20:41 ` Imre Deak
  2019-10-03  0:19 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/tgl: Add the Thunderbolt PLL divider values (rev2) Patchwork
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 13+ messages in thread
From: Imre Deak @ 2019-10-02 20:41 UTC (permalink / raw)
  To: intel-gfx; +Cc: Mika Westerberg, Lucas De Marchi

The Thunderbolt PLL divider values on TGL differ from the ICL ones,
update the PLL parameter calculation function accordingly.

Bspec: 49204

v2:
- Remove unused refclk config. (José)

Cc: Jose Souza <jose.souza@intel.com>
Cc: Clinton A Taylor <clinton.a.taylor@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Mika Westerberg <mika.westerberg@intel.com>
Tested-by: Mika Westerberg <mika.westerberg@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Jose Souza <jose.souza@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dpll_mgr.c | 42 ++++++++++++++++++-
 1 file changed, 40 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dpll_mgr.c b/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
index be69a2344294..5e9e84c94a15 100644
--- a/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
+++ b/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
@@ -2520,6 +2520,18 @@ static const struct skl_wrpll_params icl_tbt_pll_19_2MHz_values = {
 	.pdiv = 0x4 /* 5 */, .kdiv = 1, .qdiv_mode = 0, .qdiv_ratio = 0,
 };
 
+static const struct skl_wrpll_params tgl_tbt_pll_19_2MHz_values = {
+	.dco_integer = 0x54, .dco_fraction = 0x3000,
+	/* the following params are unused */
+	.pdiv = 0, .kdiv = 0, .qdiv_mode = 0, .qdiv_ratio = 0,
+};
+
+static const struct skl_wrpll_params tgl_tbt_pll_24MHz_values = {
+	.dco_integer = 0x43, .dco_fraction = 0x4000,
+	/* the following params are unused */
+	.pdiv = 0, .kdiv = 0, .qdiv_mode = 0, .qdiv_ratio = 0,
+};
+
 static bool icl_calc_dp_combo_pll(struct intel_crtc_state *crtc_state,
 				  struct skl_wrpll_params *pll_params)
 {
@@ -2547,8 +2559,34 @@ static bool icl_calc_tbt_pll(struct intel_crtc_state *crtc_state,
 {
 	struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
 
-	*pll_params = dev_priv->cdclk.hw.ref == 24000 ?
-			icl_tbt_pll_24MHz_values : icl_tbt_pll_19_2MHz_values;
+	if (INTEL_GEN(dev_priv) >= 12) {
+		switch (dev_priv->cdclk.hw.ref) {
+		default:
+			MISSING_CASE(dev_priv->cdclk.hw.ref);
+			/* fall-through */
+		case 19200:
+		case 38400:
+			*pll_params = tgl_tbt_pll_19_2MHz_values;
+			break;
+		case 24000:
+			*pll_params = tgl_tbt_pll_24MHz_values;
+			break;
+		}
+	} else {
+		switch (dev_priv->cdclk.hw.ref) {
+		default:
+			MISSING_CASE(dev_priv->cdclk.hw.ref);
+			/* fall-through */
+		case 19200:
+		case 38400:
+			*pll_params = icl_tbt_pll_19_2MHz_values;
+			break;
+		case 24000:
+			*pll_params = icl_tbt_pll_24MHz_values;
+			break;
+		}
+	}
+
 	return true;
 }
 
-- 
2.17.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* ✗ Fi.CI.CHECKPATCH: warning for drm/i915/tgl: Add the Thunderbolt PLL divider values (rev2)
  2019-10-02 14:08 [PATCH] drm/i915/tgl: Add the Thunderbolt PLL divider values Imre Deak
                   ` (3 preceding siblings ...)
  2019-10-02 20:41 ` [PATCH v2] " Imre Deak
@ 2019-10-03  0:19 ` Patchwork
  2019-10-03  0:43 ` ✗ Fi.CI.BAT: failure " Patchwork
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2019-10-03  0:19 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/tgl: Add the Thunderbolt PLL divider values (rev2)
URL   : https://patchwork.freedesktop.org/series/67498/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
1b4f080f283b drm/i915/tgl: Add the Thunderbolt PLL divider values
-:33: CHECK:CAMELCASE: Avoid CamelCase: <tgl_tbt_pll_19_2MHz_values>
#33: FILE: drivers/gpu/drm/i915/display/intel_dpll_mgr.c:2523:
+static const struct skl_wrpll_params tgl_tbt_pll_19_2MHz_values = {

-:39: CHECK:CAMELCASE: Avoid CamelCase: <tgl_tbt_pll_24MHz_values>
#39: FILE: drivers/gpu/drm/i915/display/intel_dpll_mgr.c:2529:
+static const struct skl_wrpll_params tgl_tbt_pll_24MHz_values = {

-:74: CHECK:CAMELCASE: Avoid CamelCase: <icl_tbt_pll_19_2MHz_values>
#74: FILE: drivers/gpu/drm/i915/display/intel_dpll_mgr.c:2582:
+			*pll_params = icl_tbt_pll_19_2MHz_values;

-:77: CHECK:CAMELCASE: Avoid CamelCase: <icl_tbt_pll_24MHz_values>
#77: FILE: drivers/gpu/drm/i915/display/intel_dpll_mgr.c:2585:
+			*pll_params = icl_tbt_pll_24MHz_values;

total: 0 errors, 0 warnings, 4 checks, 54 lines checked

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 13+ messages in thread

* ✗ Fi.CI.BAT: failure for drm/i915/tgl: Add the Thunderbolt PLL divider values (rev2)
  2019-10-02 14:08 [PATCH] drm/i915/tgl: Add the Thunderbolt PLL divider values Imre Deak
                   ` (4 preceding siblings ...)
  2019-10-03  0:19 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/tgl: Add the Thunderbolt PLL divider values (rev2) Patchwork
@ 2019-10-03  0:43 ` Patchwork
  2019-10-03 12:17   ` Imre Deak
  2019-10-03 14:25 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/tgl: Add the Thunderbolt PLL divider values (rev3) Patchwork
                   ` (2 subsequent siblings)
  8 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2019-10-03  0:43 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/tgl: Add the Thunderbolt PLL divider values (rev2)
URL   : https://patchwork.freedesktop.org/series/67498/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_6993 -> Patchwork_14640
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_14640 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_14640, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/index.html

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in Patchwork_14640:

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live_execlists:
    - fi-bsw-n3050:       [PASS][1] -> [DMESG-FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6993/fi-bsw-n3050/igt@i915_selftest@live_execlists.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/fi-bsw-n3050/igt@i915_selftest@live_execlists.html

  
Known issues
------------

  Here are the changes found in Patchwork_14640 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_mmap_gtt@basic-read-write-distinct:
    - fi-icl-u3:          [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) +2 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6993/fi-icl-u3/igt@gem_mmap_gtt@basic-read-write-distinct.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/fi-icl-u3/igt@gem_mmap_gtt@basic-read-write-distinct.html

  * igt@i915_module_load@reload:
    - fi-blb-e6850:       [PASS][5] -> [INCOMPLETE][6] ([fdo#107718])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6993/fi-blb-e6850/igt@i915_module_load@reload.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/fi-blb-e6850/igt@i915_module_load@reload.html

  * igt@kms_chamelium@dp-crc-fast:
    - fi-kbl-7500u:       [PASS][7] -> [FAIL][8] ([fdo#109635 ] / [fdo#110387])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6993/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html

  
#### Possible fixes ####

  * igt@gem_mmap_gtt@basic-short:
    - fi-icl-u3:          [DMESG-WARN][9] ([fdo#107724]) -> [PASS][10] +3 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6993/fi-icl-u3/igt@gem_mmap_gtt@basic-short.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/fi-icl-u3/igt@gem_mmap_gtt@basic-short.html

  
  [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#109635 ]: https://bugs.freedesktop.org/show_bug.cgi?id=109635 
  [fdo#110387]: https://bugs.freedesktop.org/show_bug.cgi?id=110387


Participating hosts (51 -> 44)
------------------------------

  Additional (1): fi-tgl-u 
  Missing    (8): fi-ilk-m540 fi-bxt-dsi fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus 


Build changes
-------------

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_6993 -> Patchwork_14640

  CI-20190529: 20190529
  CI_DRM_6993: 78b99839aed8190fa23def8f963eea782f033ca8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5210: 74f55119f9920b65996535210a09147997804136 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14640: 1b4f080f283b8114701614efe37cbe0b26c22362 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

1b4f080f283b drm/i915/tgl: Add the Thunderbolt PLL divider values

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: ✗ Fi.CI.BAT: failure for drm/i915/tgl: Add the Thunderbolt PLL divider values (rev2)
  2019-10-03  0:43 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2019-10-03 12:17   ` Imre Deak
  0 siblings, 0 replies; 13+ messages in thread
From: Imre Deak @ 2019-10-03 12:17 UTC (permalink / raw)
  To: intel-gfx

On Thu, Oct 03, 2019 at 12:43:41AM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: drm/i915/tgl: Add the Thunderbolt PLL divider values (rev2)
> URL   : https://patchwork.freedesktop.org/series/67498/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_6993 -> Patchwork_14640
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with Patchwork_14640 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in Patchwork_14640, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in Patchwork_14640:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live_execlists:
>     - fi-bsw-n3050:       [PASS][1] -> [DMESG-FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6993/fi-bsw-n3050/igt@i915_selftest@live_execlists.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/fi-bsw-n3050/igt@i915_selftest@live_execlists.html

It's a failure on an unrelated platform, I opened a new bug:
https://bugs.freedesktop.org/show_bug.cgi?id=111895

> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in Patchwork_14640 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_mmap_gtt@basic-read-write-distinct:
>     - fi-icl-u3:          [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) +2 similar issues
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6993/fi-icl-u3/igt@gem_mmap_gtt@basic-read-write-distinct.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/fi-icl-u3/igt@gem_mmap_gtt@basic-read-write-distinct.html
> 
>   * igt@i915_module_load@reload:
>     - fi-blb-e6850:       [PASS][5] -> [INCOMPLETE][6] ([fdo#107718])
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6993/fi-blb-e6850/igt@i915_module_load@reload.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/fi-blb-e6850/igt@i915_module_load@reload.html
> 
>   * igt@kms_chamelium@dp-crc-fast:
>     - fi-kbl-7500u:       [PASS][7] -> [FAIL][8] ([fdo#109635 ] / [fdo#110387])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6993/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_mmap_gtt@basic-short:
>     - fi-icl-u3:          [DMESG-WARN][9] ([fdo#107724]) -> [PASS][10] +3 similar issues
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6993/fi-icl-u3/igt@gem_mmap_gtt@basic-short.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/fi-icl-u3/igt@gem_mmap_gtt@basic-short.html
> 
>   
>   [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
>   [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
>   [fdo#109635 ]: https://bugs.freedesktop.org/show_bug.cgi?id=109635 
>   [fdo#110387]: https://bugs.freedesktop.org/show_bug.cgi?id=110387
> 
> 
> Participating hosts (51 -> 44)
> ------------------------------
> 
>   Additional (1): fi-tgl-u 
>   Missing    (8): fi-ilk-m540 fi-bxt-dsi fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus 
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * Linux: CI_DRM_6993 -> Patchwork_14640
> 
>   CI-20190529: 20190529
>   CI_DRM_6993: 78b99839aed8190fa23def8f963eea782f033ca8 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGT_5210: 74f55119f9920b65996535210a09147997804136 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>   Patchwork_14640: 1b4f080f283b8114701614efe37cbe0b26c22362 @ git://anongit.freedesktop.org/gfx-ci/linux
> 
> 
> == Linux commits ==
> 
> 1b4f080f283b drm/i915/tgl: Add the Thunderbolt PLL divider values
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14640/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 13+ messages in thread

* ✗ Fi.CI.CHECKPATCH: warning for drm/i915/tgl: Add the Thunderbolt PLL divider values (rev3)
  2019-10-02 14:08 [PATCH] drm/i915/tgl: Add the Thunderbolt PLL divider values Imre Deak
                   ` (5 preceding siblings ...)
  2019-10-03  0:43 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2019-10-03 14:25 ` Patchwork
  2019-10-03 14:49 ` ✓ Fi.CI.BAT: success " Patchwork
  2019-10-03 21:55 ` ✓ Fi.CI.IGT: " Patchwork
  8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2019-10-03 14:25 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/tgl: Add the Thunderbolt PLL divider values (rev3)
URL   : https://patchwork.freedesktop.org/series/67498/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
2a79d1c605b4 drm/i915/tgl: Add the Thunderbolt PLL divider values
-:33: CHECK:CAMELCASE: Avoid CamelCase: <tgl_tbt_pll_19_2MHz_values>
#33: FILE: drivers/gpu/drm/i915/display/intel_dpll_mgr.c:2523:
+static const struct skl_wrpll_params tgl_tbt_pll_19_2MHz_values = {

-:39: CHECK:CAMELCASE: Avoid CamelCase: <tgl_tbt_pll_24MHz_values>
#39: FILE: drivers/gpu/drm/i915/display/intel_dpll_mgr.c:2529:
+static const struct skl_wrpll_params tgl_tbt_pll_24MHz_values = {

-:74: CHECK:CAMELCASE: Avoid CamelCase: <icl_tbt_pll_19_2MHz_values>
#74: FILE: drivers/gpu/drm/i915/display/intel_dpll_mgr.c:2582:
+			*pll_params = icl_tbt_pll_19_2MHz_values;

-:77: CHECK:CAMELCASE: Avoid CamelCase: <icl_tbt_pll_24MHz_values>
#77: FILE: drivers/gpu/drm/i915/display/intel_dpll_mgr.c:2585:
+			*pll_params = icl_tbt_pll_24MHz_values;

total: 0 errors, 0 warnings, 4 checks, 54 lines checked

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 13+ messages in thread

* ✓ Fi.CI.BAT: success for drm/i915/tgl: Add the Thunderbolt PLL divider values (rev3)
  2019-10-02 14:08 [PATCH] drm/i915/tgl: Add the Thunderbolt PLL divider values Imre Deak
                   ` (6 preceding siblings ...)
  2019-10-03 14:25 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/tgl: Add the Thunderbolt PLL divider values (rev3) Patchwork
@ 2019-10-03 14:49 ` Patchwork
  2019-10-03 21:55 ` ✓ Fi.CI.IGT: " Patchwork
  8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2019-10-03 14:49 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/tgl: Add the Thunderbolt PLL divider values (rev3)
URL   : https://patchwork.freedesktop.org/series/67498/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6997 -> Patchwork_14649
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/index.html

Known issues
------------

  Here are the changes found in Patchwork_14649 that come from known issues:

### IGT changes ###

#### Possible fixes ####

  * igt@i915_selftest@live_gtt:
    - fi-glk-dsi:         [DMESG-FAIL][1] -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/fi-glk-dsi/igt@i915_selftest@live_gtt.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/fi-glk-dsi/igt@i915_selftest@live_gtt.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-icl-u2:          [FAIL][3] ([fdo#103167]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#111381]: https://bugs.freedesktop.org/show_bug.cgi?id=111381


Participating hosts (49 -> 44)
------------------------------

  Additional (2): fi-icl-u3 fi-snb-2600 
  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-hsw-peppy fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper 


Build changes
-------------

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_6997 -> Patchwork_14649

  CI-20190529: 20190529
  CI_DRM_6997: 428a87c2d4a199a35dc4bd8ac0f10d4c29dd6b43 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5210: 74f55119f9920b65996535210a09147997804136 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14649: 2a79d1c605b467bc1d2ac020a05980153dc28e25 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

2a79d1c605b4 drm/i915/tgl: Add the Thunderbolt PLL divider values

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 13+ messages in thread

* ✓ Fi.CI.IGT: success for drm/i915/tgl: Add the Thunderbolt PLL divider values (rev3)
  2019-10-02 14:08 [PATCH] drm/i915/tgl: Add the Thunderbolt PLL divider values Imre Deak
                   ` (7 preceding siblings ...)
  2019-10-03 14:49 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2019-10-03 21:55 ` Patchwork
  2019-10-04 10:49   ` Imre Deak
  8 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2019-10-03 21:55 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/tgl: Add the Thunderbolt PLL divider values (rev3)
URL   : https://patchwork.freedesktop.org/series/67498/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6997_full -> Patchwork_14649_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in Patchwork_14649_full:

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@kms_frontbuffer_tracking@fbcpsr-tilingchange:
    - {shard-tglb}:       NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-tilingchange.html

  
Known issues
------------

  Here are the changes found in Patchwork_14649_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_eio@reset-stress:
    - shard-snb:          [PASS][2] -> [FAIL][3] ([fdo#109661])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-snb4/igt@gem_eio@reset-stress.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-snb5/igt@gem_eio@reset-stress.html

  * igt@gem_exec_schedule@independent-bsd2:
    - shard-iclb:         [PASS][4] -> [SKIP][5] ([fdo#109276]) +16 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb2/igt@gem_exec_schedule@independent-bsd2.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb6/igt@gem_exec_schedule@independent-bsd2.html

  * igt@gem_exec_schedule@preempt-other-chain-bsd:
    - shard-iclb:         [PASS][6] -> [SKIP][7] ([fdo#111325]) +5 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb7/igt@gem_exec_schedule@preempt-other-chain-bsd.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-skl:          [PASS][8] -> [DMESG-WARN][9] ([fdo#111870]) +1 similar issue
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl10/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup:
    - shard-kbl:          [PASS][10] -> [DMESG-WARN][11] ([fdo#111870])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-kbl1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-kbl3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [PASS][12] -> [DMESG-WARN][13] ([fdo#111870])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html
    - shard-hsw:          [PASS][14] -> [DMESG-WARN][15] ([fdo#111870])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-hsw8/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@kms_busy@basic-modeset-c:
    - shard-hsw:          [PASS][16] -> [INCOMPLETE][17] ([fdo#103540])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-hsw4/igt@kms_busy@basic-modeset-c.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-hsw8/igt@kms_busy@basic-modeset-c.html

  * igt@kms_color@pipe-a-ctm-0-75:
    - shard-skl:          [PASS][18] -> [FAIL][19] ([fdo#108682])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl6/igt@kms_color@pipe-a-ctm-0-75.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl4/igt@kms_color@pipe-a-ctm-0-75.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-skl:          [PASS][20] -> [FAIL][21] ([fdo#105363])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl10/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-apl:          [PASS][22] -> [DMESG-WARN][23] ([fdo#108566]) +3 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_tiling@flip-to-y-tiled:
    - shard-iclb:         [PASS][24] -> [FAIL][25] ([fdo#107931] / [fdo#108134])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb7/igt@kms_flip_tiling@flip-to-y-tiled.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb4/igt@kms_flip_tiling@flip-to-y-tiled.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render:
    - shard-iclb:         [PASS][26] -> [FAIL][27] ([fdo#103167]) +3 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [PASS][28] -> [SKIP][29] ([fdo#109441]) +1 similar issue
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb7/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_setmode@basic:
    - shard-skl:          [PASS][30] -> [FAIL][31] ([fdo#99912])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl8/igt@kms_setmode@basic.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl3/igt@kms_setmode@basic.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@rcs0-s3:
    - shard-iclb:         [DMESG-WARN][32] ([fdo#111764]) -> [PASS][33]
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb1/igt@gem_ctx_isolation@rcs0-s3.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb3/igt@gem_ctx_isolation@rcs0-s3.html

  * igt@gem_ctx_switch@vecs0-queue:
    - {shard-tglb}:       [INCOMPLETE][34] ([fdo#111735]) -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-tglb7/igt@gem_ctx_switch@vecs0-queue.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-tglb4/igt@gem_ctx_switch@vecs0-queue.html

  * igt@gem_eio@in-flight-suspend:
    - shard-snb:          [INCOMPLETE][36] ([fdo#105411]) -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-snb4/igt@gem_eio@in-flight-suspend.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-snb5/igt@gem_eio@in-flight-suspend.html

  * igt@gem_exec_balancer@smoke:
    - shard-iclb:         [SKIP][38] ([fdo#110854]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb6/igt@gem_exec_balancer@smoke.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb4/igt@gem_exec_balancer@smoke.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [SKIP][40] ([fdo#111325]) -> [PASS][41] +10 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb3/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_mmap_gtt@basic-small-copy:
    - shard-snb:          [DMESG-WARN][42] ([fdo#111891]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-snb4/igt@gem_mmap_gtt@basic-small-copy.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-snb2/igt@gem_mmap_gtt@basic-small-copy.html

  * igt@gem_mmap_gtt@hang:
    - shard-apl:          [DMESG-WARN][44] ([fdo#109385]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-apl4/igt@gem_mmap_gtt@hang.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-apl1/igt@gem_mmap_gtt@hang.html

  * igt@gem_mmap_gtt@medium-copy-odd:
    - {shard-tglb}:       [INCOMPLETE][46] ([fdo#111747]) -> [PASS][47]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-tglb6/igt@gem_mmap_gtt@medium-copy-odd.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-tglb1/igt@gem_mmap_gtt@medium-copy-odd.html

  * igt@gem_tiled_blits@normal:
    - shard-kbl:          [DMESG-WARN][48] -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-kbl3/igt@gem_tiled_blits@normal.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-kbl4/igt@gem_tiled_blits@normal.html

  * igt@gem_userptr_blits@coherency-sync:
    - shard-hsw:          [DMESG-WARN][50] ([fdo#111870]) -> [PASS][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-hsw8/igt@gem_userptr_blits@coherency-sync.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-hsw1/igt@gem_userptr_blits@coherency-sync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-snb:          [DMESG-WARN][52] ([fdo#111870]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-kbl:          [DMESG-WARN][54] ([fdo#111870]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-kbl6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-kbl6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
    - shard-glk:          [DMESG-WARN][56] ([fdo#111870]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-glk6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-glk8/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-apl:          [DMESG-WARN][58] ([fdo#108566]) -> [PASS][59] +3 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-apl6/igt@gem_workarounds@suspend-resume-context.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-apl4/igt@gem_workarounds@suspend-resume-context.html

  * {igt@i915_pm_dc@dc6-dpms}:
    - shard-iclb:         [FAIL][60] ([fdo#110548]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb6/igt@i915_pm_dc@dc6-dpms.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-glk:          [FAIL][62] ([fdo#106509] / [fdo#107409]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-glk8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-glk7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-untiled:
    - shard-skl:          [FAIL][64] ([fdo#103184] / [fdo#103232]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-untiled.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl4/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-untiled.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-skl:          [INCOMPLETE][66] ([fdo#104108] / [fdo#107773]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl9/igt@kms_fbcon_fbt@psr-suspend.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl4/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-skl:          [INCOMPLETE][68] ([fdo#109507]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl7/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
    - shard-iclb:         [FAIL][70] ([fdo#103167]) -> [PASS][71] +5 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu:
    - {shard-tglb}:       [FAIL][72] ([fdo#103167]) -> [PASS][73] +15 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - {shard-tglb}:       [INCOMPLETE][74] ([fdo#111832]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-tglb3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-tglb6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min:
    - shard-skl:          [FAIL][76] ([fdo#108145]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl6/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl2/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html

  * igt@kms_plane_lowres@pipe-a-tiling-y:
    - shard-iclb:         [FAIL][78] ([fdo#103166]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-y.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb2/igt@kms_plane_lowres@pipe-a-tiling-y.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [SKIP][80] ([fdo#109441]) -> [PASS][81] +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_psr@sprite_render:
    - shard-skl:          [DMESG-WARN][82] -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl9/igt@kms_psr@sprite_render.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl6/igt@kms_psr@sprite_render.html

  * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
    - {shard-tglb}:       [INCOMPLETE][84] ([fdo#111832] / [fdo#111850]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-tglb8/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-tglb1/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html

  * igt@prime_busy@hang-bsd2:
    - shard-iclb:         [SKIP][86] ([fdo#109276]) -> [PASS][87] +19 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb8/igt@prime_busy@hang-bsd2.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb2/igt@prime_busy@hang-bsd2.html

  
#### Warnings ####

  * igt@gem_mocs_settings@mocs-reset-bsd2:
    - shard-iclb:         [SKIP][88] ([fdo#109276]) -> [FAIL][89] ([fdo#111330])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb7/igt@gem_mocs_settings@mocs-reset-bsd2.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb4/igt@gem_mocs_settings@mocs-reset-bsd2.html

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         [DMESG-WARN][90] ([fdo#107724]) -> [SKIP][91] ([fdo#109349])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-edp.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103184]: https://bugs.freedesktop.org/show_bug.cgi?id=103184
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
  [fdo#106509]: https://bugs.freedesktop.org/show_bug.cgi?id=106509
  [fdo#107409]: https://bugs.freedesktop.org/show_bug.cgi?id=107409
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#107773]: https://bugs.freedesktop.org/show_bug.cgi?id=107773
  [fdo#107931]: https://bugs.freedesktop.org/show_bug.cgi?id=107931
  [fdo#108134]: https://bugs.freedesktop.org/show_bug.cgi?id=108134
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#108682]: https://bugs.freedesktop.org/show_bug.cgi?id=108682
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
  [fdo#109385]: https://bugs.freedesktop.org/show_bug.cgi?id=109385
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109507]: https://bugs.freedesktop.org/show_bug.cgi?id=109507
  [fdo#109661]: https://bugs.freedesktop.org/show_bug.cgi?id=109661
  [fdo#110548]: https://bugs.freedesktop.org/show_bug.cgi?id=110548
  [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
  [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
  [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
  [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330
  [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600
  [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646
  [fdo#111671]: https://bugs.freedesktop.org/show_bug.cgi?id=111671
  [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
  [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
  [fdo#111764]: https://bugs.freedesktop.org/show_bug.cgi?id=111764
  [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
  [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#111891]: https://bugs.freedesktop.org/show_bug.cgi?id=111891
  [fdo#99912]: https://bugs.freed

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: ✓ Fi.CI.IGT: success for drm/i915/tgl: Add the Thunderbolt PLL divider values (rev3)
  2019-10-03 21:55 ` ✓ Fi.CI.IGT: " Patchwork
@ 2019-10-04 10:49   ` Imre Deak
  0 siblings, 0 replies; 13+ messages in thread
From: Imre Deak @ 2019-10-04 10:49 UTC (permalink / raw)
  To: intel-gfx, Jose Souza

On Thu, Oct 03, 2019 at 09:55:22PM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: drm/i915/tgl: Add the Thunderbolt PLL divider values (rev3)
> URL   : https://patchwork.freedesktop.org/series/67498/
> State : success

Thanks for the review, pushed to -dinq.

> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_6997_full -> Patchwork_14649_full
> ====================================================
> 
> Summary
> -------
> 
>   **SUCCESS**
> 
>   No regressions found.
> 
>   
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in Patchwork_14649_full:
> 
> ### IGT changes ###
> 
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-tilingchange:
>     - {shard-tglb}:       NOTRUN -> [INCOMPLETE][1]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-tilingchange.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in Patchwork_14649_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_eio@reset-stress:
>     - shard-snb:          [PASS][2] -> [FAIL][3] ([fdo#109661])
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-snb4/igt@gem_eio@reset-stress.html
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-snb5/igt@gem_eio@reset-stress.html
> 
>   * igt@gem_exec_schedule@independent-bsd2:
>     - shard-iclb:         [PASS][4] -> [SKIP][5] ([fdo#109276]) +16 similar issues
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb2/igt@gem_exec_schedule@independent-bsd2.html
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb6/igt@gem_exec_schedule@independent-bsd2.html
> 
>   * igt@gem_exec_schedule@preempt-other-chain-bsd:
>     - shard-iclb:         [PASS][6] -> [SKIP][7] ([fdo#111325]) +5 similar issues
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb7/igt@gem_exec_schedule@preempt-other-chain-bsd.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
>     - shard-skl:          [PASS][8] -> [DMESG-WARN][9] ([fdo#111870]) +1 similar issue
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl10/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup:
>     - shard-kbl:          [PASS][10] -> [DMESG-WARN][11] ([fdo#111870])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-kbl1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-kbl3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
> 
>   * igt@gem_userptr_blits@sync-unmap-cycles:
>     - shard-snb:          [PASS][12] -> [DMESG-WARN][13] ([fdo#111870])
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html
>     - shard-hsw:          [PASS][14] -> [DMESG-WARN][15] ([fdo#111870])
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-hsw8/igt@gem_userptr_blits@sync-unmap-cycles.html
> 
>   * igt@kms_busy@basic-modeset-c:
>     - shard-hsw:          [PASS][16] -> [INCOMPLETE][17] ([fdo#103540])
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-hsw4/igt@kms_busy@basic-modeset-c.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-hsw8/igt@kms_busy@basic-modeset-c.html
> 
>   * igt@kms_color@pipe-a-ctm-0-75:
>     - shard-skl:          [PASS][18] -> [FAIL][19] ([fdo#108682])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl6/igt@kms_color@pipe-a-ctm-0-75.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl4/igt@kms_color@pipe-a-ctm-0-75.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible:
>     - shard-skl:          [PASS][20] -> [FAIL][21] ([fdo#105363])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl10/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible:
>     - shard-apl:          [PASS][22] -> [DMESG-WARN][23] ([fdo#108566]) +3 similar issues
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible.html
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html
> 
>   * igt@kms_flip_tiling@flip-to-y-tiled:
>     - shard-iclb:         [PASS][24] -> [FAIL][25] ([fdo#107931] / [fdo#108134])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb7/igt@kms_flip_tiling@flip-to-y-tiled.html
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb4/igt@kms_flip_tiling@flip-to-y-tiled.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render:
>     - shard-iclb:         [PASS][26] -> [FAIL][27] ([fdo#103167]) +3 similar issues
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html
> 
>   * igt@kms_psr@psr2_sprite_plane_move:
>     - shard-iclb:         [PASS][28] -> [SKIP][29] ([fdo#109441]) +1 similar issue
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb7/igt@kms_psr@psr2_sprite_plane_move.html
> 
>   * igt@kms_setmode@basic:
>     - shard-skl:          [PASS][30] -> [FAIL][31] ([fdo#99912])
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl8/igt@kms_setmode@basic.html
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl3/igt@kms_setmode@basic.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_isolation@rcs0-s3:
>     - shard-iclb:         [DMESG-WARN][32] ([fdo#111764]) -> [PASS][33]
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb1/igt@gem_ctx_isolation@rcs0-s3.html
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb3/igt@gem_ctx_isolation@rcs0-s3.html
> 
>   * igt@gem_ctx_switch@vecs0-queue:
>     - {shard-tglb}:       [INCOMPLETE][34] ([fdo#111735]) -> [PASS][35]
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-tglb7/igt@gem_ctx_switch@vecs0-queue.html
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-tglb4/igt@gem_ctx_switch@vecs0-queue.html
> 
>   * igt@gem_eio@in-flight-suspend:
>     - shard-snb:          [INCOMPLETE][36] ([fdo#105411]) -> [PASS][37]
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-snb4/igt@gem_eio@in-flight-suspend.html
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-snb5/igt@gem_eio@in-flight-suspend.html
> 
>   * igt@gem_exec_balancer@smoke:
>     - shard-iclb:         [SKIP][38] ([fdo#110854]) -> [PASS][39]
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb6/igt@gem_exec_balancer@smoke.html
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb4/igt@gem_exec_balancer@smoke.html
> 
>   * igt@gem_exec_schedule@preemptive-hang-bsd:
>     - shard-iclb:         [SKIP][40] ([fdo#111325]) -> [PASS][41] +10 similar issues
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb3/igt@gem_exec_schedule@preemptive-hang-bsd.html
> 
>   * igt@gem_mmap_gtt@basic-small-copy:
>     - shard-snb:          [DMESG-WARN][42] ([fdo#111891]) -> [PASS][43]
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-snb4/igt@gem_mmap_gtt@basic-small-copy.html
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-snb2/igt@gem_mmap_gtt@basic-small-copy.html
> 
>   * igt@gem_mmap_gtt@hang:
>     - shard-apl:          [DMESG-WARN][44] ([fdo#109385]) -> [PASS][45]
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-apl4/igt@gem_mmap_gtt@hang.html
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-apl1/igt@gem_mmap_gtt@hang.html
> 
>   * igt@gem_mmap_gtt@medium-copy-odd:
>     - {shard-tglb}:       [INCOMPLETE][46] ([fdo#111747]) -> [PASS][47]
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-tglb6/igt@gem_mmap_gtt@medium-copy-odd.html
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-tglb1/igt@gem_mmap_gtt@medium-copy-odd.html
> 
>   * igt@gem_tiled_blits@normal:
>     - shard-kbl:          [DMESG-WARN][48] -> [PASS][49]
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-kbl3/igt@gem_tiled_blits@normal.html
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-kbl4/igt@gem_tiled_blits@normal.html
> 
>   * igt@gem_userptr_blits@coherency-sync:
>     - shard-hsw:          [DMESG-WARN][50] ([fdo#111870]) -> [PASS][51]
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-hsw8/igt@gem_userptr_blits@coherency-sync.html
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-hsw1/igt@gem_userptr_blits@coherency-sync.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-busy:
>     - shard-snb:          [DMESG-WARN][52] ([fdo#111870]) -> [PASS][53]
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
>     - shard-kbl:          [DMESG-WARN][54] ([fdo#111870]) -> [PASS][55]
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-kbl6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-kbl6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
>     - shard-glk:          [DMESG-WARN][56] ([fdo#111870]) -> [PASS][57]
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-glk6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-glk8/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
> 
>   * igt@gem_workarounds@suspend-resume-context:
>     - shard-apl:          [DMESG-WARN][58] ([fdo#108566]) -> [PASS][59] +3 similar issues
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-apl6/igt@gem_workarounds@suspend-resume-context.html
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-apl4/igt@gem_workarounds@suspend-resume-context.html
> 
>   * {igt@i915_pm_dc@dc6-dpms}:
>     - shard-iclb:         [FAIL][60] ([fdo#110548]) -> [PASS][61]
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb6/igt@i915_pm_dc@dc6-dpms.html
> 
>   * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
>     - shard-glk:          [FAIL][62] ([fdo#106509] / [fdo#107409]) -> [PASS][63]
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-glk8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-glk7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
> 
>   * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-untiled:
>     - shard-skl:          [FAIL][64] ([fdo#103184] / [fdo#103232]) -> [PASS][65]
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-untiled.html
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl4/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-untiled.html
> 
>   * igt@kms_fbcon_fbt@psr-suspend:
>     - shard-skl:          [INCOMPLETE][66] ([fdo#104108] / [fdo#107773]) -> [PASS][67]
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl9/igt@kms_fbcon_fbt@psr-suspend.html
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl4/igt@kms_fbcon_fbt@psr-suspend.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible:
>     - shard-skl:          [INCOMPLETE][68] ([fdo#109507]) -> [PASS][69]
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl1/igt@kms_flip@flip-vs-suspend-interruptible.html
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl7/igt@kms_flip@flip-vs-suspend-interruptible.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
>     - shard-iclb:         [FAIL][70] ([fdo#103167]) -> [PASS][71] +5 similar issues
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu:
>     - {shard-tglb}:       [FAIL][72] ([fdo#103167]) -> [PASS][73] +15 similar issues
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
>     - {shard-tglb}:       [INCOMPLETE][74] ([fdo#111832]) -> [PASS][75]
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-tglb3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-tglb6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min:
>     - shard-skl:          [FAIL][76] ([fdo#108145]) -> [PASS][77]
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl6/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl2/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
> 
>   * igt@kms_plane_lowres@pipe-a-tiling-y:
>     - shard-iclb:         [FAIL][78] ([fdo#103166]) -> [PASS][79]
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-y.html
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb2/igt@kms_plane_lowres@pipe-a-tiling-y.html
> 
>   * igt@kms_psr@psr2_primary_mmap_cpu:
>     - shard-iclb:         [SKIP][80] ([fdo#109441]) -> [PASS][81] +1 similar issue
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
> 
>   * igt@kms_psr@sprite_render:
>     - shard-skl:          [DMESG-WARN][82] -> [PASS][83]
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-skl9/igt@kms_psr@sprite_render.html
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-skl6/igt@kms_psr@sprite_render.html
> 
>   * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
>     - {shard-tglb}:       [INCOMPLETE][84] ([fdo#111832] / [fdo#111850]) -> [PASS][85]
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-tglb8/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-tglb1/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
> 
>   * igt@prime_busy@hang-bsd2:
>     - shard-iclb:         [SKIP][86] ([fdo#109276]) -> [PASS][87] +19 similar issues
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb8/igt@prime_busy@hang-bsd2.html
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb2/igt@prime_busy@hang-bsd2.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_mocs_settings@mocs-reset-bsd2:
>     - shard-iclb:         [SKIP][88] ([fdo#109276]) -> [FAIL][89] ([fdo#111330])
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb7/igt@gem_mocs_settings@mocs-reset-bsd2.html
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb4/igt@gem_mocs_settings@mocs-reset-bsd2.html
> 
>   * igt@kms_dp_dsc@basic-dsc-enable-edp:
>     - shard-iclb:         [DMESG-WARN][90] ([fdo#107724]) -> [SKIP][91] ([fdo#109349])
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6997/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-edp.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
>   [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
>   [fdo#103184]: https://bugs.freedesktop.org/show_bug.cgi?id=103184
>   [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
>   [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
>   [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
>   [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
>   [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
>   [fdo#106509]: https://bugs.freedesktop.org/show_bug.cgi?id=106509
>   [fdo#107409]: https://bugs.freedesktop.org/show_bug.cgi?id=107409
>   [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
>   [fdo#107773]: https://bugs.freedesktop.org/show_bug.cgi?id=107773
>   [fdo#107931]: https://bugs.freedesktop.org/show_bug.cgi?id=107931
>   [fdo#108134]: https://bugs.freedesktop.org/show_bug.cgi?id=108134
>   [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
>   [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
>   [fdo#108682]: https://bugs.freedesktop.org/show_bug.cgi?id=108682
>   [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
>   [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
>   [fdo#109385]: https://bugs.freedesktop.org/show_bug.cgi?id=109385
>   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   [fdo#109507]: https://bugs.freedesktop.org/show_bug.cgi?id=109507
>   [fdo#109661]: https://bugs.freedesktop.org/show_bug.cgi?id=109661
>   [fdo#110548]: https://bugs.freedesktop.org/show_bug.cgi?id=110548
>   [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
>   [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
>   [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
>   [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330
>   [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600
>   [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646
>   [fdo#111671]: https://bugs.freedesktop.org/show_bug.cgi?id=111671
>   [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
>   [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
>   [fdo#111764]: https://bugs.freedesktop.org/show_bug.cgi?id=111764
>   [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
>   [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
>   [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
>   [fdo#111891]: https://bugs.freedesktop.org/show_bug.cgi?id=111891
>   [fdo#99912]: https://bugs.freed
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14649/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2019-10-04 10:50 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-02 14:08 [PATCH] drm/i915/tgl: Add the Thunderbolt PLL divider values Imre Deak
2019-10-02 19:46 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
2019-10-02 20:07 ` [PATCH] " Souza, Jose
2019-10-02 20:25   ` Imre Deak
2019-10-02 20:10 ` ✓ Fi.CI.BAT: success for " Patchwork
2019-10-02 20:41 ` [PATCH v2] " Imre Deak
2019-10-03  0:19 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/tgl: Add the Thunderbolt PLL divider values (rev2) Patchwork
2019-10-03  0:43 ` ✗ Fi.CI.BAT: failure " Patchwork
2019-10-03 12:17   ` Imre Deak
2019-10-03 14:25 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/tgl: Add the Thunderbolt PLL divider values (rev3) Patchwork
2019-10-03 14:49 ` ✓ Fi.CI.BAT: success " Patchwork
2019-10-03 21:55 ` ✓ Fi.CI.IGT: " Patchwork
2019-10-04 10:49   ` Imre Deak

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.