All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [RFC 0/1] PSR H/W tracking validation
@ 2019-10-05  4:42 Anshuman Gupta
  2019-10-05  4:42 ` [igt-dev] [RFC 1/1] tests/psr: " Anshuman Gupta
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Anshuman Gupta @ 2019-10-05  4:42 UTC (permalink / raw)
  To: igt-dev

PSR i915 driver implementation exposes PSR IIR interrupts'
ktime last_entry_attempt, last_exit.

PSR H/W IGT assumes that last_entry_attempt and last_exit
will be increasing monotonically and uses these ktime values
to validate PSR H/W tracking with page flip events on primary
plane.

Please provide your suggestion for any improvement.
 
Anshuman Gupta (1):
  tests/psr: PSR H/W tracking validation

 lib/igt_psr.c   |  14 ++++++
 lib/igt_psr.h   |   3 ++
 tests/kms_psr.c | 112 ++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 129 insertions(+)

-- 
2.21.0

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] [RFC 1/1] tests/psr: PSR H/W tracking validation
  2019-10-05  4:42 [igt-dev] [RFC 0/1] PSR H/W tracking validation Anshuman Gupta
@ 2019-10-05  4:42 ` Anshuman Gupta
  2019-10-05  5:16 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Anshuman Gupta @ 2019-10-05  4:42 UTC (permalink / raw)
  To: igt-dev

Validate the PSR PRE_ENTRY and PST_EXIT PSR IIR
interrupts in order to validate PSR H/W tracking.

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 lib/igt_psr.c   |  14 ++++++
 lib/igt_psr.h   |   3 ++
 tests/kms_psr.c | 112 ++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 129 insertions(+)

diff --git a/lib/igt_psr.c b/lib/igt_psr.c
index b92ea73f..3c2fbce0 100644
--- a/lib/igt_psr.c
+++ b/lib/igt_psr.c
@@ -163,6 +163,20 @@ bool psr_disable(int debugfs_fd)
 	return psr_set(debugfs_fd, -1);
 }
 
+void psr_enable_irq_debug(int debugfs_fd)
+{
+	char buf[PSR_DEBUG_MAX_LEN];
+	int psr_debug, ret;
+
+	igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_debug", buf,
+				sizeof(buf));
+	ret = sscanf(buf, "%d", &psr_debug);
+	igt_assert_eq(ret, 1);
+	psr_debug |= PSR_DEBUG_IRQ;
+	snprintf(buf, sizeof(buf), "%d", psr_debug);
+	psr_write(debugfs_fd, buf);
+}
+
 bool psr_sink_support(int debugfs_fd, enum psr_mode mode)
 {
 	char buf[PSR_STATUS_MAX_LEN];
diff --git a/lib/igt_psr.h b/lib/igt_psr.h
index ca385736..2843e99c 100644
--- a/lib/igt_psr.h
+++ b/lib/igt_psr.h
@@ -29,6 +29,8 @@
 #include "igt_aux.h"
 
 #define PSR_STATUS_MAX_LEN 512
+#define PSR_DEBUG_MAX_LEN 64
+#define PSR_DEBUG_IRQ 0x10
 
 enum psr_mode {
 	PSR_MODE_1,
@@ -39,6 +41,7 @@ bool psr_wait_entry(int debugfs_fd, enum psr_mode mode);
 bool psr_wait_update(int debugfs_fd, enum psr_mode mode);
 bool psr_long_wait_update(int debugfs_fd, enum psr_mode mode);
 bool psr_enable(int debugfs_fd, enum psr_mode);
+void psr_enable_irq_debug(int debugfs_fd);
 bool psr_disable(int debugfs_fd);
 bool psr_sink_support(int debugfs_fd, enum psr_mode);
 bool psr2_wait_su(int debugfs_fd, uint16_t *num_su_blocks);
diff --git a/tests/kms_psr.c b/tests/kms_psr.c
index 39de0112..2eb4411b 100644
--- a/tests/kms_psr.c
+++ b/tests/kms_psr.c
@@ -30,9 +30,11 @@
 #include <stdio.h>
 #include <string.h>
 #include "intel_bufmgr.h"
+#include "limits.h"
 
 enum operations {
 	PAGE_FLIP,
+	PAGE_FLIP_HW_TRACKING,
 	MMAP_GTT,
 	MMAP_CPU,
 	BLT,
@@ -41,10 +43,16 @@ enum operations {
 	PLANE_ONOFF,
 };
 
+enum psr_irq_type {
+	IRQ_PRE_ENTRY,
+	IRQ_POST_EXIT,
+};
+
 static const char *op_str(enum operations op)
 {
 	static const char * const name[] = {
 		[PAGE_FLIP] = "page_flip",
+		[PAGE_FLIP_HW_TRACKING] = "page_flip_hw_tracking",
 		[MMAP_GTT] = "mmap_gtt",
 		[MMAP_CPU] = "mmap_cpu",
 		[BLT] = "blt",
@@ -62,6 +70,7 @@ typedef struct {
 	enum operations op;
 	int test_plane_id;
 	enum psr_mode op_psr_mode;
+	bool psr_irq_debug;
 	uint32_t devid;
 	uint32_t crtc_id;
 	igt_display_t display;
@@ -206,6 +215,55 @@ static bool psr_wait_entry_if_enabled(data_t *data)
 	return psr_wait_entry(data->debugfs_fd, data->op_psr_mode);
 }
 
+static uint64_t read_psr_irq_ktime(const char *irq_ktime)
+{
+	char *e;
+	unsigned long ret;
+	char *s = strchr(irq_ktime, ':');
+
+	assert(s);
+	s++;
+	ret = strtol(s, &e, 10);
+	assert(((ret != LONG_MIN && ret != ULONG_MAX) || errno != ERANGE) &&
+	       e > s && *e == '\n' && ret >= 0);
+	return ret;
+}
+
+static uint64_t get_psr_irq_time(int debugfs_fd, enum psr_irq_type type)
+{
+	char buf[PSR_STATUS_MAX_LEN];
+	char *str;
+	const char *irq = type == IRQ_PRE_ENTRY ? "Last attempted entry at"
+						: "Last exit at";
+
+	igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_status", buf,
+				sizeof(buf));
+	str = strstr(buf, irq);
+	return read_psr_irq_ktime(str);
+}
+
+static bool psr_pre_entry_irq_check(int debugfs_fd, uint64_t prev_entry_time)
+{
+	uint64_t irq_entry_time;
+
+	irq_entry_time = get_psr_irq_time(debugfs_fd, IRQ_PRE_ENTRY);
+	igt_debug("PSR IRQ pre entry time %lu\n", irq_entry_time);
+	return (irq_entry_time > prev_entry_time);
+}
+
+static bool psr_wait_pre_entry(int debugfs_fd, uint64_t ktime)
+{
+	return igt_wait(psr_pre_entry_irq_check(debugfs_fd, ktime), 500, 20);
+}
+
+static bool psr_wait_pre_entry_if_enabled(data_t *data, uint64_t ktime)
+{
+	if (data->with_psr_disabled)
+		return true;
+
+	return psr_wait_pre_entry(data->debugfs_fd, ktime);
+}
+
 static bool psr_wait_update_if_enabled(data_t *data)
 {
 	if (data->with_psr_disabled)
@@ -214,6 +272,28 @@ static bool psr_wait_update_if_enabled(data_t *data)
 	return psr_wait_update(data->debugfs_fd, data->op_psr_mode);
 }
 
+static bool psr_post_exit_irq_check(int debugfs_fd, uint64_t prev_exit_time)
+{
+	uint64_t irq_exit_time;
+
+	irq_exit_time = get_psr_irq_time(debugfs_fd, IRQ_POST_EXIT);
+	igt_debug("PSR IRQ posr exit time %lu\n", irq_exit_time);
+	return (irq_exit_time > prev_exit_time);
+}
+
+static bool psr_wait_post_exit(int debugfs_fd, uint64_t ktime)
+{
+	return igt_wait(psr_post_exit_irq_check(debugfs_fd, ktime), 40, 10);
+}
+
+static bool psr_wait_post_exit_if_enabled(data_t *data, uint64_t ktime)
+{
+	if (data->with_psr_disabled)
+		return true;
+
+	return psr_wait_post_exit(data->debugfs_fd, ktime);
+}
+
 static bool psr_enable_if_enabled(data_t *data)
 {
 	if (data->with_psr_disabled)
@@ -222,6 +302,14 @@ static bool psr_enable_if_enabled(data_t *data)
 	return psr_enable(data->debugfs_fd, data->op_psr_mode);
 }
 
+static void psr_enable_irq_debug_if_enabled(data_t *data)
+{
+	if (data->with_psr_disabled)
+		return;
+
+	psr_enable_irq_debug(data->debugfs_fd);
+}
+
 static inline void manual(const char *expected)
 {
 	igt_debug_manual_check("all", expected);
@@ -243,10 +331,14 @@ static void run_test(data_t *data)
 	igt_plane_t *test_plane = data->test_plane;
 	void *ptr;
 	const char *expected = "";
+	uint64_t ktime;
 
 	/* Confirm that screen became Green */
 	manual("screen GREEN");
 
+	if (data->op == PAGE_FLIP_HW_TRACKING)
+		ktime = get_psr_irq_time(data->debugfs_fd, IRQ_PRE_ENTRY);
+
 	/* Confirm screen stays Green after PSR got active */
 	igt_assert(psr_wait_entry_if_enabled(data));
 	manual("screen GREEN");
@@ -261,9 +353,17 @@ static void run_test(data_t *data)
 	else
 		manual("GREEN background with WHITE box");
 
+	if (data->op == PAGE_FLIP_HW_TRACKING)
+		igt_assert(psr_wait_pre_entry_if_enabled(data, ktime));
+
 	igt_assert(psr_wait_entry_if_enabled(data));
+
+	if (data->op == PAGE_FLIP_HW_TRACKING)
+		ktime = get_psr_irq_time(data->debugfs_fd, IRQ_POST_EXIT);
+
 	switch (data->op) {
 	case PAGE_FLIP:
+	case PAGE_FLIP_HW_TRACKING:
 		/* Only in use when testing primary plane */
 		igt_assert(drmModePageFlip(data->drm_fd, data->crtc_id,
 					   data->fb_green.fb_id, 0, NULL) == 0);
@@ -310,6 +410,10 @@ static void run_test(data_t *data)
 		break;
 	}
 	igt_assert(psr_wait_update_if_enabled(data));
+
+	if (data->op == PAGE_FLIP_HW_TRACKING)
+		igt_assert(psr_wait_post_exit_if_enabled(data, ktime));
+
 	manual(expected);
 }
 
@@ -390,6 +494,10 @@ static void test_setup(data_t *data)
 	if (data->op_psr_mode == PSR_MODE_2)
 		igt_require(data->supports_psr2);
 	psr_enable_if_enabled(data);
+
+	if (data->psr_irq_debug)
+		psr_enable_irq_debug_if_enabled(data);
+
 	setup_test_plane(data, data->test_plane_id);
 	igt_assert(psr_wait_entry_if_enabled(data));
 }
@@ -475,6 +583,10 @@ igt_main_args("", long_options, help_str, opt_handler, &data)
 				      op_str(op)) {
 				data.op = op;
 				data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
+
+				if (data.op == PAGE_FLIP_HW_TRACKING)
+					data.psr_irq_debug = true;
+
 				test_setup(&data);
 				run_test(&data);
 				test_cleanup(&data);
-- 
2.21.0

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ GitLab.Pipeline: warning for PSR H/W tracking validation
  2019-10-05  4:42 [igt-dev] [RFC 0/1] PSR H/W tracking validation Anshuman Gupta
  2019-10-05  4:42 ` [igt-dev] [RFC 1/1] tests/psr: " Anshuman Gupta
@ 2019-10-05  5:16 ` Patchwork
  2019-10-05  5:33 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-10-05  5:16 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev

== Series Details ==

Series: PSR H/W tracking validation
URL   : https://patchwork.freedesktop.org/series/67624/
State : warning

== Summary ==

ERROR! This series introduces new undocumented tests:

kms_psr@primary_page_flip_hw_tracking
kms_psr@psr2_primary_page_flip_hw_tracking

Can you document them as per the requirement in the [CONTRIBUTING.md]?

[Documentation] has more details on how to do this.

Here are few examples:
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/0316695d03aa46108296b27f3982ec93200c7a6e
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/443cc658e1e6b492ee17bf4f4d891029eb7a205d

Thanks in advance!

[CONTRIBUTING.md]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/blob/master/CONTRIBUTING.md#L19
[Documentation]: https://drm.pages.freedesktop.org/igt-gpu-tools/igt-gpu-tools-Core.html#igt-describe

Other than that, pipeline status: SUCCESS.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/68522 for more details

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/68522
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.BAT: failure for PSR H/W tracking validation
  2019-10-05  4:42 [igt-dev] [RFC 0/1] PSR H/W tracking validation Anshuman Gupta
  2019-10-05  4:42 ` [igt-dev] [RFC 1/1] tests/psr: " Anshuman Gupta
  2019-10-05  5:16 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
@ 2019-10-05  5:33 ` Patchwork
  2019-10-07 10:30   ` Anshuman Gupta
  2019-10-09 11:04 ` [igt-dev] ✗ GitLab.Pipeline: warning for PSR H/W tracking validation (rev2) Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2019-10-05  5:33 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev

== Series Details ==

Series: PSR H/W tracking validation
URL   : https://patchwork.freedesktop.org/series/67624/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7012 -> IGTPW_3538
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_3538 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_3538, 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/IGTPW_3538/index.html

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live_execlists:
    - fi-icl-u2:          [PASS][1] -> [DMESG-FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-icl-u2/igt@i915_selftest@live_execlists.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-icl-u2/igt@i915_selftest@live_execlists.html
    - fi-cfl-8109u:       [PASS][3] -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-cfl-8109u/igt@i915_selftest@live_execlists.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-cfl-8109u/igt@i915_selftest@live_execlists.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [PASS][5] -> [FAIL][6] ([fdo#111045] / [fdo#111096])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  * igt@prime_vgem@basic-fence-read:
    - fi-icl-u3:          [PASS][7] -> [DMESG-WARN][8] ([fdo#107724]) +1 similar issue
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-icl-u3/igt@prime_vgem@basic-fence-read.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-icl-u3/igt@prime_vgem@basic-fence-read.html

  
#### Possible fixes ####

  * igt@gem_ctx_switch@rcs0:
    - fi-bxt-dsi:         [INCOMPLETE][9] ([fdo#103927]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-bxt-dsi/igt@gem_ctx_switch@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-bxt-dsi/igt@gem_ctx_switch@rcs0.html

  * igt@gem_mmap_gtt@basic-write-no-prefault:
    - fi-icl-u3:          [DMESG-WARN][11] ([fdo#107724]) -> [PASS][12] +1 similar issue
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-icl-u3/igt@gem_mmap_gtt@basic-write-no-prefault.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-icl-u3/igt@gem_mmap_gtt@basic-write-no-prefault.html

  * igt@i915_selftest@live_hangcheck:
    - {fi-icl-guc}:       [DMESG-FAIL][13] ([fdo#111678]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-icl-guc/igt@i915_selftest@live_hangcheck.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-icl-guc/igt@i915_selftest@live_hangcheck.html

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

  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
  [fdo#111678]: https://bugs.freedesktop.org/show_bug.cgi?id=111678


Participating hosts (52 -> 41)
------------------------------

  Missing    (11): fi-cml-u2 fi-ilk-m540 fi-hsw-4200u fi-bdw-gvtdvm fi-byt-squawks fi-bsw-cyan fi-apl-guc fi-gdg-551 fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5212 -> IGTPW_3538

  CI-20190529: 20190529
  CI_DRM_7012: 42dcf5adc9c45f6f2f28e23b815ab723f96edca0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3538: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/index.html
  IGT_5212: d17a484b3c22706b2b004ef1577f367d79235e43 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@kms_psr@primary_page_flip_hw_tracking
+igt@kms_psr@psr2_primary_page_flip_hw_tracking

== Logs ==

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

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for PSR H/W tracking validation
  2019-10-05  5:33 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
@ 2019-10-07 10:30   ` Anshuman Gupta
  0 siblings, 0 replies; 8+ messages in thread
From: Anshuman Gupta @ 2019-10-07 10:30 UTC (permalink / raw)
  To: igt-dev, lakshminarayana.vudum

On 2019-10-05 at 05:33:23 +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: PSR H/W tracking validation
> URL   : https://patchwork.freedesktop.org/series/67624/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_7012 -> IGTPW_3538
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_3538 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_3538, 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/IGTPW_3538/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_3538:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live_execlists:
>     - fi-icl-u2:          [PASS][1] -> [DMESG-FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-icl-u2/igt@i915_selftest@live_execlists.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-icl-u2/igt@i915_selftest@live_execlists.html
>     - fi-cfl-8109u:       [PASS][3] -> [DMESG-WARN][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-cfl-8109u/igt@i915_selftest@live_execlists.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-cfl-8109u/igt@i915_selftest@live_execlists.html
Hi Laksmi,
Above CI failure doesn't seems to be related to my IGT patch, could you please create a bug or update a filter forthis bug.
Thanks,
Anshuman Gupta.  
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_3538 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@kms_chamelium@hdmi-hpd-fast:
>     - fi-kbl-7500u:       [PASS][5] -> [FAIL][6] ([fdo#111045] / [fdo#111096])
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
> 
>   * igt@prime_vgem@basic-fence-read:
>     - fi-icl-u3:          [PASS][7] -> [DMESG-WARN][8] ([fdo#107724]) +1 similar issue
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-icl-u3/igt@prime_vgem@basic-fence-read.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-icl-u3/igt@prime_vgem@basic-fence-read.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_switch@rcs0:
>     - fi-bxt-dsi:         [INCOMPLETE][9] ([fdo#103927]) -> [PASS][10]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-bxt-dsi/igt@gem_ctx_switch@rcs0.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-bxt-dsi/igt@gem_ctx_switch@rcs0.html
> 
>   * igt@gem_mmap_gtt@basic-write-no-prefault:
>     - fi-icl-u3:          [DMESG-WARN][11] ([fdo#107724]) -> [PASS][12] +1 similar issue
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-icl-u3/igt@gem_mmap_gtt@basic-write-no-prefault.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-icl-u3/igt@gem_mmap_gtt@basic-write-no-prefault.html
> 
>   * igt@i915_selftest@live_hangcheck:
>     - {fi-icl-guc}:       [DMESG-FAIL][13] ([fdo#111678]) -> [PASS][14]
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7012/fi-icl-guc/igt@i915_selftest@live_hangcheck.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/fi-icl-guc/igt@i915_selftest@live_hangcheck.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
>   [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
>   [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
>   [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
>   [fdo#111678]: https://bugs.freedesktop.org/show_bug.cgi?id=111678
> 
> 
> Participating hosts (52 -> 41)
> ------------------------------
> 
>   Missing    (11): fi-cml-u2 fi-ilk-m540 fi-hsw-4200u fi-bdw-gvtdvm fi-byt-squawks fi-bsw-cyan fi-apl-guc fi-gdg-551 fi-icl-y fi-byt-clapper fi-bdw-samus 
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_5212 -> IGTPW_3538
> 
>   CI-20190529: 20190529
>   CI_DRM_7012: 42dcf5adc9c45f6f2f28e23b815ab723f96edca0 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_3538: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/index.html
>   IGT_5212: d17a484b3c22706b2b004ef1577f367d79235e43 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> 
> 
> 
> == Testlist changes ==
> 
> +igt@kms_psr@primary_page_flip_hw_tracking
> +igt@kms_psr@psr2_primary_page_flip_hw_tracking
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3538/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ GitLab.Pipeline: warning for PSR H/W tracking validation (rev2)
  2019-10-05  4:42 [igt-dev] [RFC 0/1] PSR H/W tracking validation Anshuman Gupta
                   ` (2 preceding siblings ...)
  2019-10-05  5:33 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
@ 2019-10-09 11:04 ` Patchwork
  2019-10-09 11:58 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
  2019-10-09 15:55 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-10-09 11:04 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev

== Series Details ==

Series: PSR H/W tracking validation (rev2)
URL   : https://patchwork.freedesktop.org/series/67624/
State : warning

== Summary ==

ERROR! This series introduces new undocumented tests:

kms_psr@primary_page_flip_hw_tracking
kms_psr@psr2_primary_page_flip_hw_tracking

Can you document them as per the requirement in the [CONTRIBUTING.md]?

[Documentation] has more details on how to do this.

Here are few examples:
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/0316695d03aa46108296b27f3982ec93200c7a6e
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/443cc658e1e6b492ee17bf4f4d891029eb7a205d

Thanks in advance!

[CONTRIBUTING.md]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/blob/master/CONTRIBUTING.md#L19
[Documentation]: https://drm.pages.freedesktop.org/igt-gpu-tools/igt-gpu-tools-Core.html#igt-describe

Other than that, pipeline status: SUCCESS.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/69325 for more details

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/69325
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for PSR H/W tracking validation (rev2)
  2019-10-05  4:42 [igt-dev] [RFC 0/1] PSR H/W tracking validation Anshuman Gupta
                   ` (3 preceding siblings ...)
  2019-10-09 11:04 ` [igt-dev] ✗ GitLab.Pipeline: warning for PSR H/W tracking validation (rev2) Patchwork
@ 2019-10-09 11:58 ` Patchwork
  2019-10-09 15:55 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-10-09 11:58 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev

== Series Details ==

Series: PSR H/W tracking validation (rev2)
URL   : https://patchwork.freedesktop.org/series/67624/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7040 -> IGTPW_3555
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-blb-e6850:       [PASS][1] -> [INCOMPLETE][2] ([fdo#107718])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html

  * igt@prime_busy@basic-before-default:
    - fi-icl-u3:          [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/fi-icl-u3/igt@prime_busy@basic-before-default.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/fi-icl-u3/igt@prime_busy@basic-before-default.html

  
#### Possible fixes ####

  * igt@kms_chamelium@hdmi-edid-read:
    - {fi-icl-u4}:        [FAIL][5] ([fdo#111045]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/fi-icl-u4/igt@kms_chamelium@hdmi-edid-read.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/fi-icl-u4/igt@kms_chamelium@hdmi-edid-read.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - {fi-icl-u4}:        [FAIL][7] ([fdo#111045] / [fdo#111096]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/fi-icl-u4/igt@kms_chamelium@hdmi-hpd-fast.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/fi-icl-u4/igt@kms_chamelium@hdmi-hpd-fast.html

  * igt@kms_frontbuffer_tracking@basic:
    - {fi-icl-u4}:        [FAIL][9] ([fdo#103167]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/fi-icl-u4/igt@kms_frontbuffer_tracking@basic.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/fi-icl-u4/igt@kms_frontbuffer_tracking@basic.html
    - fi-hsw-peppy:       [DMESG-WARN][11] ([fdo#102614]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html

  * igt@prime_busy@basic-wait-after-default:
    - fi-icl-u3:          [DMESG-WARN][13] ([fdo#107724]) -> [PASS][14] +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/fi-icl-u3/igt@prime_busy@basic-wait-after-default.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/fi-icl-u3/igt@prime_busy@basic-wait-after-default.html

  
#### Warnings ####

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [FAIL][15] ([fdo#111407]) -> [FAIL][16] ([fdo#111045] / [fdo#111096])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

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

  [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
  [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600
  [fdo#111608]: https://bugs.freedesktop.org/show_bug.cgi?id=111608
  [fdo#111831]: https://bugs.freedesktop.org/show_bug.cgi?id=111831


Participating hosts (52 -> 46)
------------------------------

  Missing    (6): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5218 -> IGTPW_3555

  CI-20190529: 20190529
  CI_DRM_7040: 932ef79204b22399bbf7e9d9db5cb813b5ca01b7 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3555: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/index.html
  IGT_5218: 869ed1ee0b71ce17f0a864512488f8b1a6cb8545 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@kms_psr@primary_page_flip_hw_tracking
+igt@kms_psr@psr2_primary_page_flip_hw_tracking

== Logs ==

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for PSR H/W tracking validation (rev2)
  2019-10-05  4:42 [igt-dev] [RFC 0/1] PSR H/W tracking validation Anshuman Gupta
                   ` (4 preceding siblings ...)
  2019-10-09 11:58 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2019-10-09 15:55 ` Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-10-09 15:55 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev

== Series Details ==

Series: PSR H/W tracking validation (rev2)
URL   : https://patchwork.freedesktop.org/series/67624/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7040_full -> IGTPW_3555_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@kms_psr@psr2_primary_page_flip_hw_tracking} (NEW):
    - shard-iclb:         NOTRUN -> [SKIP][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb3/igt@kms_psr@psr2_primary_page_flip_hw_tracking.html
    - {shard-tglb}:       NOTRUN -> [FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-tglb3/igt@kms_psr@psr2_primary_page_flip_hw_tracking.html

  
New tests
---------

  New tests have been introduced between CI_DRM_7040_full and IGTPW_3555_full:

### New IGT tests (2) ###

  * igt@kms_psr@primary_page_flip_hw_tracking:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 1.86] s

  * igt@kms_psr@psr2_primary_page_flip_hw_tracking:
    - Statuses : 1 fail(s) 6 skip(s)
    - Exec time: [0.0, 1.98] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_eio@in-flight-contexts-immediate:
    - shard-snb:          [PASS][3] -> [FAIL][4] ([fdo#111925])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-snb1/igt@gem_eio@in-flight-contexts-immediate.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-snb2/igt@gem_eio@in-flight-contexts-immediate.html

  * igt@gem_exec_schedule@pi-ringfull-bsd:
    - shard-iclb:         [PASS][5] -> [SKIP][6] ([fdo#111325]) +3 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-iclb5/igt@gem_exec_schedule@pi-ringfull-bsd.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb1/igt@gem_exec_schedule@pi-ringfull-bsd.html

  * igt@gem_exec_schedule@preempt-queue-bsd1:
    - shard-iclb:         [PASS][7] -> [SKIP][8] ([fdo#109276]) +15 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb7/igt@gem_exec_schedule@preempt-queue-bsd1.html

  * igt@gem_tiled_swapping@non-threaded:
    - shard-hsw:          [PASS][9] -> [INCOMPLETE][10] ([fdo#103540] / [fdo#108686])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-hsw7/igt@gem_tiled_swapping@non-threaded.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-hsw4/igt@gem_tiled_swapping@non-threaded.html
    - shard-kbl:          [PASS][11] -> [INCOMPLETE][12] ([fdo#103665] / [fdo#108686])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-kbl3/igt@gem_tiled_swapping@non-threaded.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-kbl6/igt@gem_tiled_swapping@non-threaded.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
    - shard-hsw:          [PASS][13] -> [DMESG-WARN][14] ([fdo#111870])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [PASS][15] -> [DMESG-WARN][16] ([fdo#111870]) +2 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-snb6/igt@gem_userptr_blits@sync-unmap-cycles.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-snb1/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@kms_busy@extended-pageflip-hang-newfb-render-b:
    - shard-snb:          [PASS][17] -> [SKIP][18] ([fdo#109271] / [fdo#109278])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-snb1/igt@kms_busy@extended-pageflip-hang-newfb-render-b.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-snb7/igt@kms_busy@extended-pageflip-hang-newfb-render-b.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt:
    - shard-iclb:         [PASS][19] -> [FAIL][20] ([fdo#103167])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-apl:          [PASS][21] -> [DMESG-WARN][22] ([fdo#108566]) +4 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-kbl:          [PASS][23] -> [INCOMPLETE][24] ([fdo#103665])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_properties@plane-properties-atomic:
    - shard-snb:          [PASS][25] -> [SKIP][26] ([fdo#109271]) +2 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-snb5/igt@kms_properties@plane-properties-atomic.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-snb4/igt@kms_properties@plane-properties-atomic.html

  * igt@kms_psr@no_drrs:
    - shard-iclb:         [PASS][27] -> [FAIL][28] ([fdo#108341])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-iclb2/igt@kms_psr@no_drrs.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb1/igt@kms_psr@no_drrs.html

  
#### Possible fixes ####

  * igt@gem_eio@in-flight-contexts-1us:
    - shard-snb:          [FAIL][29] -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-snb2/igt@gem_eio@in-flight-contexts-1us.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-snb6/igt@gem_eio@in-flight-contexts-1us.html

  * igt@gem_exec_flush@basic-wb-pro-default:
    - shard-apl:          [INCOMPLETE][31] ([fdo#103927]) -> [PASS][32] +3 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-apl4/igt@gem_exec_flush@basic-wb-pro-default.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-apl6/igt@gem_exec_flush@basic-wb-pro-default.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [SKIP][33] ([fdo#111325]) -> [PASS][34] +5 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb5/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-hsw:          [DMESG-WARN][35] ([fdo#111870]) -> [PASS][36] +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-hsw4/igt@gem_userptr_blits@sync-unmap-cycles.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-hsw5/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - shard-snb:          [SKIP][37] ([fdo#109271]) -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-snb7/igt@i915_pm_rc6_residency@rc6-accuracy.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html

  * igt@i915_selftest@live_hangcheck:
    - shard-snb:          [INCOMPLETE][39] ([fdo#105411]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-snb5/igt@i915_selftest@live_hangcheck.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-snb6/igt@i915_selftest@live_hangcheck.html

  * igt@kms_busy@extended-modeset-hang-newfb-render-a:
    - shard-iclb:         [INCOMPLETE][41] ([fdo#107713]) -> [PASS][42] +1 similar issue
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-iclb7/igt@kms_busy@extended-modeset-hang-newfb-render-a.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb4/igt@kms_busy@extended-modeset-hang-newfb-render-a.html

  * igt@kms_cursor_crc@pipe-c-cursor-64x21-offscreen:
    - {shard-tglb}:       [INCOMPLETE][43] -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-tglb1/igt@kms_cursor_crc@pipe-c-cursor-64x21-offscreen.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-tglb7/igt@kms_cursor_crc@pipe-c-cursor-64x21-offscreen.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-glk:          [FAIL][45] ([fdo#100368]) -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-apl:          [FAIL][47] ([fdo#105363]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
    - {shard-tglb}:       [FAIL][49] ([fdo#103167]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
    - shard-iclb:         [FAIL][51] ([fdo#103167]) -> [PASS][52] +8 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][53] ([fdo#109642] / [fdo#111068]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-iclb8/igt@kms_psr2_su@page_flip.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb2/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [SKIP][55] ([fdo#109441]) -> [PASS][56] +2 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-iclb3/igt@kms_psr@psr2_primary_mmap_cpu.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_setmode@basic:
    - shard-apl:          [FAIL][57] ([fdo#99912]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-apl7/igt@kms_setmode@basic.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-apl4/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-apl:          [DMESG-WARN][59] ([fdo#108566]) -> [PASS][60] +5 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-apl8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-apl8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_vblank@pipe-c-ts-continuation-idle-hang:
    - shard-hsw:          [INCOMPLETE][61] ([fdo#103540]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-hsw8/igt@kms_vblank@pipe-c-ts-continuation-idle-hang.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-hsw8/igt@kms_vblank@pipe-c-ts-continuation-idle-hang.html

  * igt@prime_busy@hang-bsd2:
    - shard-iclb:         [SKIP][63] ([fdo#109276]) -> [PASS][64] +14 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-iclb6/igt@prime_busy@hang-bsd2.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb4/igt@prime_busy@hang-bsd2.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-nonpriv:
    - shard-iclb:         [FAIL][65] ([fdo#111329]) -> [SKIP][66] ([fdo#109276])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb3/igt@gem_ctx_isolation@vcs1-nonpriv.html

  * igt@gem_mocs_settings@mocs-isolation-bsd2:
    - shard-iclb:         [SKIP][67] ([fdo#109276]) -> [FAIL][68] ([fdo#111330])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-iclb8/igt@gem_mocs_settings@mocs-isolation-bsd2.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb2/igt@gem_mocs_settings@mocs-isolation-bsd2.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-apl:          [INCOMPLETE][69] ([fdo#103927]) -> [DMESG-WARN][70] ([fdo#108566])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_psr@psr2_suspend:
    - shard-iclb:         [SKIP][71] ([fdo#109441]) -> [DMESG-WARN][72] ([fdo#107724])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-iclb4/igt@kms_psr@psr2_suspend.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-iclb2/igt@kms_psr@psr2_suspend.html

  * igt@kms_vblank@pipe-c-wait-forked:
    - shard-snb:          [SKIP][73] ([fdo#109271] / [fdo#109278]) -> [SKIP][74] ([fdo#109271])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7040/shard-snb7/igt@kms_vblank@pipe-c-wait-forked.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/shard-snb7/igt@kms_vblank@pipe-c-wait-forked.html

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

  [fdo#100368]: https://bugs.freedesktop.org/show_bug.cgi?id=100368
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108341]: https://bugs.freedesktop.org/show_bug.cgi?id=108341
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [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#111795 ]: https://bugs.freedesktop.org/show_bug.cgi?id=111795 
  [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#111925]: https://bugs.freedesktop.org/show_bug.cgi?id=111925
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


Participating hosts (11 -> 7)
------------------------------

  Missing    (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5218 -> IGTPW_3555
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_7040: 932ef79204b22399bbf7e9d9db5cb813b5ca01b7 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3555: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3555/index.html
  IGT_5218: 869ed1ee0b71ce17f0a864512488f8b1a6cb8545 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

end of thread, other threads:[~2019-10-09 15:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-05  4:42 [igt-dev] [RFC 0/1] PSR H/W tracking validation Anshuman Gupta
2019-10-05  4:42 ` [igt-dev] [RFC 1/1] tests/psr: " Anshuman Gupta
2019-10-05  5:16 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
2019-10-05  5:33 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
2019-10-07 10:30   ` Anshuman Gupta
2019-10-09 11:04 ` [igt-dev] ✗ GitLab.Pipeline: warning for PSR H/W tracking validation (rev2) Patchwork
2019-10-09 11:58 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2019-10-09 15:55 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.