All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/wopcm: update default size for gen11+
@ 2019-06-04 23:15 Daniele Ceraolo Spurio
  2019-06-04 23:49 ` ✓ Fi.CI.BAT: success for " Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Daniele Ceraolo Spurio @ 2019-06-04 23:15 UTC (permalink / raw)
  To: intel-gfx

The size has been increased to 2MB starting from gen11. GuC and HuC FWs
fit in 1MB so we were fine even with the legacy define, but let's still
move to the correct one before the blobs grow to avoid being caught off
guard in the future.

Bspec: 44982
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
 drivers/gpu/drm/i915/intel_wopcm.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_wopcm.c b/drivers/gpu/drm/i915/intel_wopcm.c
index f82a415ea2ba..6cb993eea206 100644
--- a/drivers/gpu/drm/i915/intel_wopcm.c
+++ b/drivers/gpu/drm/i915/intel_wopcm.c
@@ -41,8 +41,9 @@
  * context).
  */
 
-/* Default WOPCM size 1MB. */
-#define GEN9_WOPCM_SIZE			(1024 * 1024)
+/* Default WOPCM size is 2MB from gen11, 1MB on previous platforms */
+#define GEN11_WOPCM_SIZE		(SZ_2M)
+#define GEN9_WOPCM_SIZE			(SZ_1M)
 /* 16KB WOPCM (RSVD WOPCM) is reserved from HuC firmware top. */
 #define WOPCM_RESERVED_SIZE		(16 * 1024)
 
@@ -71,7 +72,10 @@
  */
 void intel_wopcm_init_early(struct intel_wopcm *wopcm)
 {
-	wopcm->size = GEN9_WOPCM_SIZE;
+	if (INTEL_GEN(wopcm_to_i915(wopcm)) >= 11)
+		wopcm->size = GEN11_WOPCM_SIZE;
+	else
+		wopcm->size = GEN9_WOPCM_SIZE;
 
 	DRM_DEBUG_DRIVER("WOPCM size: %uKiB\n", wopcm->size / 1024);
 }
-- 
2.20.1

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

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

* ✓ Fi.CI.BAT: success for drm/i915/wopcm: update default size for gen11+
  2019-06-04 23:15 [PATCH] drm/i915/wopcm: update default size for gen11+ Daniele Ceraolo Spurio
@ 2019-06-04 23:49 ` Patchwork
  2019-06-05 14:51 ` [PATCH] " Michal Wajdeczko
  2019-06-06  5:15 ` ✓ Fi.CI.IGT: success for " Patchwork
  2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-06-04 23:49 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/wopcm: update default size for gen11+
URL   : https://patchwork.freedesktop.org/series/61617/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6189 -> Patchwork_13176
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/

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

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

### IGT changes ###

#### Issues hit ####

  * igt@debugfs_test@read_all_entries:
    - fi-ilk-650:         [PASS][1] -> [DMESG-WARN][2] ([fdo#106387])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/fi-ilk-650/igt@debugfs_test@read_all_entries.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/fi-ilk-650/igt@debugfs_test@read_all_entries.html

  
#### Possible fixes ####

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

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


Participating hosts (50 -> 46)
------------------------------

  Additional (3): fi-byt-j1900 fi-icl-u2 fi-icl-u3 
  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-kbl-7560u fi-byt-clapper fi-bdw-samus 


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

  * Linux: CI_DRM_6189 -> Patchwork_13176

  CI_DRM_6189: 66841d188556097ec9c386a17d96eb4661c5a843 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5037: a98c9cd50aa48933217ca41055279ccb1680d25b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_13176: 6cffb3037b754cd512300880ff8d8c090c7707ea @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

6cffb3037b75 drm/i915/wopcm: update default size for gen11+

== Logs ==

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

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

* Re: [PATCH] drm/i915/wopcm: update default size for gen11+
  2019-06-04 23:15 [PATCH] drm/i915/wopcm: update default size for gen11+ Daniele Ceraolo Spurio
  2019-06-04 23:49 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-06-05 14:51 ` Michal Wajdeczko
  2019-06-05 18:21   ` Daniele Ceraolo Spurio
  2019-06-06  5:15 ` ✓ Fi.CI.IGT: success for " Patchwork
  2 siblings, 1 reply; 6+ messages in thread
From: Michal Wajdeczko @ 2019-06-05 14:51 UTC (permalink / raw)
  To: intel-gfx, Daniele Ceraolo Spurio

On Wed, 05 Jun 2019 01:15:29 +0200, Daniele Ceraolo Spurio  
<daniele.ceraolospurio@intel.com> wrote:

> The size has been increased to 2MB starting from gen11. GuC and HuC FWs

nit: s/gen11/Gen11

> fit in 1MB so we were fine even with the legacy define, but let's still
> move to the correct one before the blobs grow to avoid being caught off
> guard in the future.
>
> Bspec: 44982

I think for ICL this should be 12690

> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> ---
>  drivers/gpu/drm/i915/intel_wopcm.c | 10 +++++++---
>  1 file changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_wopcm.c  
> b/drivers/gpu/drm/i915/intel_wopcm.c
> index f82a415ea2ba..6cb993eea206 100644
> --- a/drivers/gpu/drm/i915/intel_wopcm.c
> +++ b/drivers/gpu/drm/i915/intel_wopcm.c
> @@ -41,8 +41,9 @@
>   * context).
>   */
> -/* Default WOPCM size 1MB. */
> -#define GEN9_WOPCM_SIZE			(1024 * 1024)
> +/* Default WOPCM size is 2MB from gen11, 1MB on previous platforms */

nit: s/gen11/Gen11

> +#define GEN11_WOPCM_SIZE		(SZ_2M)
> +#define GEN9_WOPCM_SIZE			(SZ_1M)
>  /* 16KB WOPCM (RSVD WOPCM) is reserved from HuC firmware top. */
>  #define WOPCM_RESERVED_SIZE		(16 * 1024)
> @@ -71,7 +72,10 @@
>   */
>  void intel_wopcm_init_early(struct intel_wopcm *wopcm)
>  {
> -	wopcm->size = GEN9_WOPCM_SIZE;
> +	if (INTEL_GEN(wopcm_to_i915(wopcm)) >= 11)
> +		wopcm->size = GEN11_WOPCM_SIZE;
> +	else
> +		wopcm->size = GEN9_WOPCM_SIZE;

While here, maybe we should not try to setup WOPCM size on pre-Gen9
platforms ? Then we can drop below log if WOPCM is zero/not available.

> 	DRM_DEBUG_DRIVER("WOPCM size: %uKiB\n", wopcm->size / 1024);
>  }

With above,
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [PATCH] drm/i915/wopcm: update default size for gen11+
  2019-06-05 14:51 ` [PATCH] " Michal Wajdeczko
@ 2019-06-05 18:21   ` Daniele Ceraolo Spurio
  2019-06-05 18:25     ` Michal Wajdeczko
  0 siblings, 1 reply; 6+ messages in thread
From: Daniele Ceraolo Spurio @ 2019-06-05 18:21 UTC (permalink / raw)
  To: Michal Wajdeczko, intel-gfx



On 6/5/19 7:51 AM, Michal Wajdeczko wrote:
> On Wed, 05 Jun 2019 01:15:29 +0200, Daniele Ceraolo Spurio 
> <daniele.ceraolospurio@intel.com> wrote:
> 
>> The size has been increased to 2MB starting from gen11. GuC and HuC FWs
> 
> nit: s/gen11/Gen11
> 
>> fit in 1MB so we were fine even with the legacy define, but let's still
>> move to the correct one before the blobs grow to avoid being caught off
>> guard in the future.
>>
>> Bspec: 44982
> 
> I think for ICL this should be 12690
> 
>> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
>> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
>> ---
>>  drivers/gpu/drm/i915/intel_wopcm.c | 10 +++++++---
>>  1 file changed, 7 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/intel_wopcm.c 
>> b/drivers/gpu/drm/i915/intel_wopcm.c
>> index f82a415ea2ba..6cb993eea206 100644
>> --- a/drivers/gpu/drm/i915/intel_wopcm.c
>> +++ b/drivers/gpu/drm/i915/intel_wopcm.c
>> @@ -41,8 +41,9 @@
>>   * context).
>>   */
>> -/* Default WOPCM size 1MB. */
>> -#define GEN9_WOPCM_SIZE            (1024 * 1024)
>> +/* Default WOPCM size is 2MB from gen11, 1MB on previous platforms */
> 
> nit: s/gen11/Gen11
> 
>> +#define GEN11_WOPCM_SIZE        (SZ_2M)
>> +#define GEN9_WOPCM_SIZE            (SZ_1M)
>>  /* 16KB WOPCM (RSVD WOPCM) is reserved from HuC firmware top. */
>>  #define WOPCM_RESERVED_SIZE        (16 * 1024)
>> @@ -71,7 +72,10 @@
>>   */
>>  void intel_wopcm_init_early(struct intel_wopcm *wopcm)
>>  {
>> -    wopcm->size = GEN9_WOPCM_SIZE;
>> +    if (INTEL_GEN(wopcm_to_i915(wopcm)) >= 11)
>> +        wopcm->size = GEN11_WOPCM_SIZE;
>> +    else
>> +        wopcm->size = GEN9_WOPCM_SIZE;
> 
> While here, maybe we should not try to setup WOPCM size on pre-Gen9
> platforms ? Then we can drop below log if WOPCM is zero/not available.

Are you ok if I just return early if !HAS_GUC(), to make it not 
gen-specific?

Daniele

> 
>>     DRM_DEBUG_DRIVER("WOPCM size: %uKiB\n", wopcm->size / 1024);
>>  }
> 
> With above,
> Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [PATCH] drm/i915/wopcm: update default size for gen11+
  2019-06-05 18:21   ` Daniele Ceraolo Spurio
@ 2019-06-05 18:25     ` Michal Wajdeczko
  0 siblings, 0 replies; 6+ messages in thread
From: Michal Wajdeczko @ 2019-06-05 18:25 UTC (permalink / raw)
  To: intel-gfx, Daniele Ceraolo Spurio

On Wed, 05 Jun 2019 20:21:54 +0200, Daniele Ceraolo Spurio  
<daniele.ceraolospurio@intel.com> wrote:

>
>
> On 6/5/19 7:51 AM, Michal Wajdeczko wrote:
>> On Wed, 05 Jun 2019 01:15:29 +0200, Daniele Ceraolo Spurio  
>> <daniele.ceraolospurio@intel.com> wrote:
>>
>>> The size has been increased to 2MB starting from gen11. GuC and HuC FWs
>>  nit: s/gen11/Gen11
>>
>>> fit in 1MB so we were fine even with the legacy define, but let's still
>>> move to the correct one before the blobs grow to avoid being caught off
>>> guard in the future.
>>>
>>> Bspec: 44982
>>  I think for ICL this should be 12690
>>
>>> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
>>> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>> ---
>>>  drivers/gpu/drm/i915/intel_wopcm.c | 10 +++++++---
>>>  1 file changed, 7 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/i915/intel_wopcm.c  
>>> b/drivers/gpu/drm/i915/intel_wopcm.c
>>> index f82a415ea2ba..6cb993eea206 100644
>>> --- a/drivers/gpu/drm/i915/intel_wopcm.c
>>> +++ b/drivers/gpu/drm/i915/intel_wopcm.c
>>> @@ -41,8 +41,9 @@
>>>   * context).
>>>   */
>>> -/* Default WOPCM size 1MB. */
>>> -#define GEN9_WOPCM_SIZE            (1024 * 1024)
>>> +/* Default WOPCM size is 2MB from gen11, 1MB on previous platforms */
>>  nit: s/gen11/Gen11
>>
>>> +#define GEN11_WOPCM_SIZE        (SZ_2M)
>>> +#define GEN9_WOPCM_SIZE            (SZ_1M)
>>>  /* 16KB WOPCM (RSVD WOPCM) is reserved from HuC firmware top. */
>>>  #define WOPCM_RESERVED_SIZE        (16 * 1024)
>>> @@ -71,7 +72,10 @@
>>>   */
>>>  void intel_wopcm_init_early(struct intel_wopcm *wopcm)
>>>  {
>>> -    wopcm->size = GEN9_WOPCM_SIZE;
>>> +    if (INTEL_GEN(wopcm_to_i915(wopcm)) >= 11)
>>> +        wopcm->size = GEN11_WOPCM_SIZE;
>>> +    else
>>> +        wopcm->size = GEN9_WOPCM_SIZE;
>>  While here, maybe we should not try to setup WOPCM size on pre-Gen9
>> platforms ? Then we can drop below log if WOPCM is zero/not available.
>
> Are you ok if I just return early if !HAS_GUC(), to make it not  
> gen-specific?

That's even better (and aligned with other intel_wopcm_init functions)

Thanks,
Michal

>
> Daniele
>
>>
>>>     DRM_DEBUG_DRIVER("WOPCM size: %uKiB\n", wopcm->size / 1024);
>>>  }
>>  With above,
>> Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* ✓ Fi.CI.IGT: success for drm/i915/wopcm: update default size for gen11+
  2019-06-04 23:15 [PATCH] drm/i915/wopcm: update default size for gen11+ Daniele Ceraolo Spurio
  2019-06-04 23:49 ` ✓ Fi.CI.BAT: success for " Patchwork
  2019-06-05 14:51 ` [PATCH] " Michal Wajdeczko
@ 2019-06-06  5:15 ` Patchwork
  2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-06-06  5:15 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/wopcm: update default size for gen11+
URL   : https://patchwork.freedesktop.org/series/61617/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6189_full -> Patchwork_13176_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_eio@in-flight-suspend:
    - shard-glk:          [PASS][1] -> [FAIL][2] ([fdo#110667])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-glk3/igt@gem_eio@in-flight-suspend.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-glk3/igt@gem_eio@in-flight-suspend.html

  * igt@gem_softpin@noreloc-s3:
    - shard-skl:          [PASS][3] -> [INCOMPLETE][4] ([fdo#104108])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-skl8/igt@gem_softpin@noreloc-s3.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-skl2/igt@gem_softpin@noreloc-s3.html

  * igt@kms_flip@2x-plain-flip:
    - shard-hsw:          [PASS][5] -> [SKIP][6] ([fdo#109271]) +32 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-hsw2/igt@kms_flip@2x-plain-flip.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-hsw1/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-kbl:          [PASS][7] -> [FAIL][8] ([fdo#102887] / [fdo#105363])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-kbl3/igt@kms_flip@flip-vs-expired-vblank.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-kbl3/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-apl:          [PASS][9] -> [DMESG-WARN][10] ([fdo#108566])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
    - shard-iclb:         [PASS][11] -> [FAIL][12] ([fdo#103167]) +2 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min:
    - shard-skl:          [PASS][13] -> [FAIL][14] ([fdo#108145])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-skl10/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-skl5/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html

  * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
    - shard-skl:          [PASS][15] -> [FAIL][16] ([fdo#108145] / [fdo#110403]) +1 similar issue
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-skl9/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-skl9/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html

  
#### Possible fixes ####

  * {igt@gem_ctx_param@vm}:
    - shard-hsw:          [DMESG-WARN][17] ([fdo#110836]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-hsw8/igt@gem_ctx_param@vm.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-hsw8/igt@gem_ctx_param@vm.html

  * igt@gem_exec_schedule@in-order-vebox:
    - shard-apl:          [INCOMPLETE][19] ([fdo#103927]) -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-apl3/igt@gem_exec_schedule@in-order-vebox.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-apl6/igt@gem_exec_schedule@in-order-vebox.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [DMESG-WARN][21] ([fdo#108566]) -> [PASS][22] +2 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-apl5/igt@i915_suspend@fence-restore-tiled2untiled.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-apl1/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-iclb:         [FAIL][23] ([fdo#103833]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-iclb2/igt@kms_fbcon_fbt@psr-suspend.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-iclb6/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite:
    - shard-hsw:          [SKIP][25] ([fdo#109271]) -> [PASS][26] +39 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-hsw1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-hsw6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
    - shard-iclb:         [FAIL][27] ([fdo#103167]) -> [PASS][28] +4 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-iclb:         [INCOMPLETE][29] ([fdo#106978] / [fdo#107713]) -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
    - shard-iclb:         [FAIL][31] ([fdo#109247]) -> [PASS][32]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-iclb2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-iclb6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html

  * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min:
    - shard-skl:          [FAIL][33] ([fdo#108145]) -> [PASS][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-skl5/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-skl4/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-iclb:         [SKIP][35] ([fdo#109441]) -> [PASS][36] +1 similar issue
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_setmode@basic:
    - shard-kbl:          [FAIL][37] ([fdo#99912]) -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-kbl7/igt@kms_setmode@basic.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-kbl4/igt@kms_setmode@basic.html

  * igt@kms_sysfs_edid_timing:
    - shard-hsw:          [FAIL][39] ([fdo#100047]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-hsw1/igt@kms_sysfs_edid_timing.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-hsw6/igt@kms_sysfs_edid_timing.html

  
#### Warnings ####

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [FAIL][41] ([fdo#107383] / [fdo#110215]) -> [SKIP][42] ([fdo#109441])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6189/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13176/shard-iclb6/igt@kms_psr@psr2_primary_mmap_cpu.html

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

  [fdo#100047]: https://bugs.freedesktop.org/show_bug.cgi?id=100047
  [fdo#102887]: https://bugs.freedesktop.org/show_bug.cgi?id=102887
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103833]: https://bugs.freedesktop.org/show_bug.cgi?id=103833
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#106978]: https://bugs.freedesktop.org/show_bug.cgi?id=106978
  [fdo#107383]: https://bugs.freedesktop.org/show_bug.cgi?id=107383
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#109247]: https://bugs.freedesktop.org/show_bug.cgi?id=109247
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110215]: https://bugs.freedesktop.org/show_bug.cgi?id=110215
  [fdo#110403]: https://bugs.freedesktop.org/show_bug.cgi?id=110403
  [fdo#110667]: https://bugs.freedesktop.org/show_bug.cgi?id=110667
  [fdo#110836]: https://bugs.freedesktop.org/show_bug.cgi?id=110836
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


Participating hosts (10 -> 10)
------------------------------

  No changes in participating hosts


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

  * Linux: CI_DRM_6189 -> Patchwork_13176

  CI_DRM_6189: 66841d188556097ec9c386a17d96eb4661c5a843 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5037: a98c9cd50aa48933217ca41055279ccb1680d25b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_13176: 6cffb3037b754cd512300880ff8d8c090c7707ea @ git://anongit.freedesktop.org/gfx-ci/linux
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

end of thread, other threads:[~2019-06-06  5:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-04 23:15 [PATCH] drm/i915/wopcm: update default size for gen11+ Daniele Ceraolo Spurio
2019-06-04 23:49 ` ✓ Fi.CI.BAT: success for " Patchwork
2019-06-05 14:51 ` [PATCH] " Michal Wajdeczko
2019-06-05 18:21   ` Daniele Ceraolo Spurio
2019-06-05 18:25     ` Michal Wajdeczko
2019-06-06  5:15 ` ✓ Fi.CI.IGT: success for " 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.