* [igt-dev] [PATCH i-g-t v7 0/4] Enabling PC8+ residency for all GEN9+ platforms v7
@ 2019-06-05 7:54 Anshuman Gupta
2019-06-05 7:54 ` [igt-dev] [PATCH i-g-t v7 1/4] tests/i915/i915_pm_rpm: Enable PC8+ residency test for all Gen9+ Anshuman Gupta
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Anshuman Gupta @ 2019-06-05 7:54 UTC (permalink / raw)
To: igt-dev
This is resubmission after removing debug subtest pc8-residency-all-pipes-planes.
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3107/? results are proving that
platforms which are passing pc8 residency subtest, are able to enter pc8 even
with all planes are enabled on all pipes. This states that gen9 onward platform.
can enter pc8 with all connected display being on, which was not clear from specs.
As we do not want to file bug for pc8-residency-all-pipes-planes
debug test, resubmitting the series after removing it.
This patch series enable PC8+ residency test, earlier these tests
were only enabled for Haswell and Broadwell.
This revision has addressed minor review comment provided by Ram on revision 6.
Earlier pc8-residency sub-test were failing on most of Gen 9
platforms, so trying pc8-residency sub test after setting up powertop
and dumping the pmc sysfs attributes.
Anshuman Gupta (4):
tests/i915/i915_pm_rpm: Enable PC8+ residency test for all Gen9+
tests/i915/i915_pm_rpm: modeset-pc8-residency-stress
DEBUG: invoke powertop and pmc ltr_ignore when pc8 tests fails.
DO_NOT_MERGE: adding i915_pm_rpm pc8 subtest to fast feedback list.
tests/i915/i915_pm_rpm.c | 226 +++++++++++++++++++++++++-
tests/intel-ci/fast-feedback.testlist | 3 +
2 files changed, 220 insertions(+), 9 deletions(-)
--
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] 10+ messages in thread* [igt-dev] [PATCH i-g-t v7 1/4] tests/i915/i915_pm_rpm: Enable PC8+ residency test for all Gen9+ 2019-06-05 7:54 [igt-dev] [PATCH i-g-t v7 0/4] Enabling PC8+ residency for all GEN9+ platforms v7 Anshuman Gupta @ 2019-06-05 7:54 ` Anshuman Gupta 2019-06-05 7:54 ` [igt-dev] [PATCH i-g-t v7 2/4] tests/i915/i915_pm_rpm: modeset-pc8-residency-stress Anshuman Gupta ` (5 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Anshuman Gupta @ 2019-06-05 7:54 UTC (permalink / raw) To: igt-dev Enabled has_pc8 global for ICL and Gen9+. Modified PC8+ residency sub-test with all screen enabled. v2:Fixed the issue of skipped test on HSW. Improved the code comment for MSR_PKG_CST_CONFIG_CONTROL mask and PC8 bits, it holds good for SKL/ICL and Goldmont microarchitecture. Code readability improvement. v3:Removed the connected_screens global. [Ram] Removed pc8_needs_screen_off from mode_set_data structure, made it global, aligning to has_pc8 and has_runtime_pm global. [Ram] Reuse connector local variable in init_modeset_params_for_all_screen(). [Ram] Addressed Coding guide lines comments. [Ram] v4:Improved the code comment for MSR_PKG_CST_CONFIG_CONTROL mask and PC8 bits. [Ram] Introduced set_screens_mode_params() function to fix warning of line exceeding 80 char, fixed this warning at other places too. [Ram] Using ms_data modset_data global structure. [Ram] Introduced macros for timeout values, given to PC8+ residency check function. [Ram] v5:Addressed minor review comment by changing macro name and by removing irrelevant change with respect to this series. [Ram] Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/i915/i915_pm_rpm.c | 88 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 81 insertions(+), 7 deletions(-) diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c index a2c9d0ed..5a585544 100644 --- a/tests/i915/i915_pm_rpm.c +++ b/tests/i915/i915_pm_rpm.c @@ -52,7 +52,11 @@ #include "igt_device.h" #define MSR_PKG_CST_CONFIG_CONTROL 0xE2 -/* HSW/BDW: */ +/* + * Below PKG CST limit mask and PC8 bits are meant for + * HSW,BDW SKL,ICL and Goldmont Microarch. + * Refer IA S/W developers manual vol3c part3 chapter:35 + */ #define PKG_CST_LIMIT_MASK 0xF #define PKG_CST_LIMIT_C8 0x6 @@ -64,6 +68,9 @@ #define MAX_ENCODERS 32 #define MAX_CRTCS 16 +#define IGT_TIME_OUT_SEC_5 5 +#define IGT_TIME_OUT_SEC_10 10 + enum pc8_status { PC8_ENABLED, PC8_DISABLED @@ -90,7 +97,7 @@ enum plane_type { int drm_fd, msr_fd, pc8_status_fd; int debugfs; -bool has_runtime_pm, has_pc8; +bool has_runtime_pm, has_pc8, pc8_needs_screen_off; struct mode_set_data ms_data; /* Stuff used when creating FBs and mode setting. */ @@ -121,9 +128,25 @@ struct modeset_params { struct modeset_params lpsp_mode_params; struct modeset_params non_lpsp_mode_params; struct modeset_params *default_mode_params; +struct modeset_params *screens_mode_params[MAX_CONNECTORS]; static int8_t *pm_data = NULL; +static inline void set_screens_mode_param(drmModeConnectorPtr connector, + struct modeset_params *params) +{ + drmModeModeInfoPtr mode = NULL; + + mode = &connector->modes[0]; + igt_create_pattern_fb(drm_fd, mode->hdisplay, mode->vdisplay, + DRM_FORMAT_XRGB8888, LOCAL_DRM_FORMAT_MOD_NONE, + ¶ms->fb); + params->crtc_id = kmstest_find_crtc_for_connector(drm_fd, ms_data.res, + connector, 0); + params->connector_id = connector->connector_id; + params->mode = mode; +} + static int modprobe(const char *driver) { return igt_kmod_load(driver, NULL); @@ -297,6 +320,28 @@ static bool init_modeset_params_for_type(struct mode_set_data *data, return true; } +static void init_modeset_params_for_all_screen(void) +{ + drmModeConnectorPtr connector = NULL; + int screen = 0; + + if (!ms_data.res) + return; + + for (int i = 0; i < ms_data.res->count_connectors; i++) { + connector = ms_data.connectors[i]; + + if (connector->connection == DRM_MODE_CONNECTED + && connector->count_modes) { + screens_mode_params[screen] = + malloc(sizeof(struct modeset_params)); + set_screens_mode_param(connector, + screens_mode_params[screen]); + screen++; + } + } +} + static void init_modeset_cached_params(struct mode_set_data *data) { bool lpsp, non_lpsp; @@ -305,6 +350,7 @@ static void init_modeset_cached_params(struct mode_set_data *data) SCREEN_TYPE_LPSP); non_lpsp = init_modeset_params_for_type(data, &non_lpsp_mode_params, SCREEN_TYPE_NON_LPSP); + init_modeset_params_for_all_screen(); if (lpsp) default_mode_params = &lpsp_mode_params; @@ -353,6 +399,22 @@ static bool enable_one_screen_with_type(struct mode_set_data *data, return set_mode_for_params(params); } +static void enable_all_screens(void) +{ + struct modeset_params *params = NULL; + + /* SKIP if there are no connected screens. */ + igt_require(screens_mode_params[0]); + + for (int i = 0; i < MAX_CONNECTORS ; i++) { + params = screens_mode_params[i]; + if (params) + set_mode_for_params(params); + else + break; + } +} + static void enable_one_screen(struct mode_set_data *data) { /* SKIP if there are no connected screens. */ @@ -685,8 +747,12 @@ static void setup_pc8(void) { has_pc8 = false; - /* Only Haswell supports the PC8 feature. */ - if (!IS_HASWELL(ms_data.devid) && !IS_BROADWELL(ms_data.devid)) + if (IS_HASWELL(ms_data.devid) || IS_BROADWELL(ms_data.devid)) + pc8_needs_screen_off = true; + else if (AT_LEAST_GEN(ms_data.devid, 9)) + pc8_needs_screen_off = false; + /* Only Haswell supports the PC8 feature on lesser than GEN9. */ + else return; /* Make sure our Kernel supports MSR and the module is loaded. */ @@ -808,9 +874,17 @@ static void pc8_residency_subtest(void) "configuration.\n"); /* Make sure PC8+ residencies stop! */ - enable_one_screen(&ms_data); - igt_assert_f(!pc8_plus_residency_changed(10), - "PC8+ residency didn't stop with screen enabled.\n"); + if (pc8_needs_screen_off) { + enable_one_screen(&ms_data); + igt_assert_f(!pc8_plus_residency_changed(IGT_TIME_OUT_SEC_10), + "PC8+ residency didn't stop with " + "screen enabled.\n"); + } else { + enable_all_screens(); + igt_assert_f(pc8_plus_residency_changed(IGT_TIME_OUT_SEC_10), + "Machine is not reaching PC8+ states " + "with all screen enabled.\n"); + } } static void modeset_subtest(enum screen_type type, int rounds, int wait_flags) -- 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] 10+ messages in thread
* [igt-dev] [PATCH i-g-t v7 2/4] tests/i915/i915_pm_rpm: modeset-pc8-residency-stress 2019-06-05 7:54 [igt-dev] [PATCH i-g-t v7 0/4] Enabling PC8+ residency for all GEN9+ platforms v7 Anshuman Gupta 2019-06-05 7:54 ` [igt-dev] [PATCH i-g-t v7 1/4] tests/i915/i915_pm_rpm: Enable PC8+ residency test for all Gen9+ Anshuman Gupta @ 2019-06-05 7:54 ` Anshuman Gupta 2019-06-05 7:54 ` [igt-dev] [PATCH i-g-t v7 3/4] DEBUG: invoke powertop and pmc ltr_ignore when pc8 tests fails Anshuman Gupta ` (4 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Anshuman Gupta @ 2019-06-05 7:54 UTC (permalink / raw) To: igt-dev Introduced pc8_needs_screen_off flag in order to differentiate between HASWELL/BROADWELL and AT_LEAST_GEN9. GEN9 onward PC8+ residency does't require display to be turned on. v3:Removed pc8_needs_screen_off from mode_set_data structure, made it global, aligning to has_pc8 and has_runtime_pm global. [Ram] Made modeset_subtest() to tests PC8+ residency after enabling a screen, earlier it expects PC8+ residency to stop on HSW/BDW. v4:Fixed conditional code for pc8_needs_screen_off. [Ram] Used macros for timeout values, given to PC8+ residency check function. [Ram] Changed the screen on timeout to check pc8+ residency to 10 seconds. v5:Addressed minor review comment by changing macro name and by removing irrelevant change with respect to this series. [Ram] Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/i915/i915_pm_rpm.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c index 5a585544..6ebbb30a 100644 --- a/tests/i915/i915_pm_rpm.c +++ b/tests/i915/i915_pm_rpm.c @@ -916,7 +916,13 @@ static void modeset_subtest(enum screen_type type, int rounds, int wait_flags) if (wait_flags & WAIT_STATUS) igt_assert(wait_for_active()); if (wait_flags & WAIT_PC8_RES) - igt_assert(!pc8_plus_residency_changed(5)); + if (pc8_needs_screen_off) + igt_assert(!pc8_plus_residency_changed + (IGT_TIME_OUT_SEC_5)); + else + igt_assert(pc8_plus_residency_changed + (IGT_TIME_OUT_SEC_10)); + if (wait_flags & WAIT_EXTRA) sleep(5); } -- 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] 10+ messages in thread
* [igt-dev] [PATCH i-g-t v7 3/4] DEBUG: invoke powertop and pmc ltr_ignore when pc8 tests fails. 2019-06-05 7:54 [igt-dev] [PATCH i-g-t v7 0/4] Enabling PC8+ residency for all GEN9+ platforms v7 Anshuman Gupta 2019-06-05 7:54 ` [igt-dev] [PATCH i-g-t v7 1/4] tests/i915/i915_pm_rpm: Enable PC8+ residency test for all Gen9+ Anshuman Gupta 2019-06-05 7:54 ` [igt-dev] [PATCH i-g-t v7 2/4] tests/i915/i915_pm_rpm: modeset-pc8-residency-stress Anshuman Gupta @ 2019-06-05 7:54 ` Anshuman Gupta 2019-06-05 7:54 ` [igt-dev] [PATCH i-g-t v7 4/4] DO_NOT_MERGE: adding i915_pm_rpm pc8 subtest to fast feedback list Anshuman Gupta ` (3 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Anshuman Gupta @ 2019-06-05 7:54 UTC (permalink / raw) To: igt-dev When pc8_residency test fails, try pc8 residency subtest after setting powertop --auto-tune and further try sub-test with pmc ltr_ignore attributes. Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/i915/i915_pm_rpm.c | 130 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 129 insertions(+), 1 deletion(-) diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c index 6ebbb30a..0c9a7890 100644 --- a/tests/i915/i915_pm_rpm.c +++ b/tests/i915/i915_pm_rpm.c @@ -99,6 +99,37 @@ int drm_fd, msr_fd, pc8_status_fd; int debugfs; bool has_runtime_pm, has_pc8, pc8_needs_screen_off; struct mode_set_data ms_data; +int pmc_debugfs, max_ltr; +bool pmc_loaded; + +#define ICL_MAX_LTR 20 +#define CNL_MAX_LTR 19 +#define SKL_MAX_LTR 17 +#define SIZE_PCH_IP_ARR 21 + +const char *pch_ip[SIZE_PCH_IP_ARR] = { + "SOUTHPORT_A", + "SOUTHPORT_B", + "SATA", + "GIGABIT_ETHERNET", + "XHCI", + "Reserved", + "ME", + "EVA", + "SOUTHPORT_C", + "HD_AUDIO", + "CNV", + "LPSS", + "SOUTHPORT_D", + "SOUTHPORT_E", + "CAMERA", + "ESPI", + "SCC", + "ISH", + "UFSX2", + "EMMC", + "WIGIG" +}; /* Stuff used when creating FBs and mode setting. */ struct mode_set_data { @@ -776,6 +807,69 @@ static void setup_pc8(void) has_pc8 = true; } +static void pmc_ignore_ltr(int ip) +{ + char tmp[10]; + int len, fd; + + if (!pmc_loaded) + return; + + len = snprintf(tmp, sizeof(tmp), "%d", ip); + fd = openat(pmc_debugfs, "ltr_ignore", O_WRONLY); + if (fd >= 0) { + igt_assert_eq(write(fd, tmp, len), len); + close(fd); + } +} + +static bool setup_powertop(void) +{ + FILE *fp; + char tmp[512]; + + fp = popen("powertop --auto-tune", "r"); + if (fp == NULL) { + igt_info("Failed to run powertop\n"); + perror("popen"); + return false; + } + + while (fgets(tmp, sizeof(tmp), fp) != NULL) + igt_info("%s\n", tmp); + + pclose(fp); + return true; +} + +static bool setup_pmc(void) +{ + const char *debugfs_root; + char path[200]; + + /* Make sure our intel_pmc_core module is loaded. */ + pmc_loaded = modprobe("intel_pmc_core") == 0; + + if (!pmc_loaded) { + igt_info("intel_pmc_core module not loaded\n"); + return; + } + + if (IS_ICELAKE(ms_data.devid)) + max_ltr = ICL_MAX_LTR; + else if (IS_CANNONLAKE(ms_data.devid)) + max_ltr = CNL_MAX_LTR; + else if (AT_LEAST_GEN(ms_data.devid, 9) && !IS_BROXTON(ms_data.devid) && + !IS_GEMINILAKE(ms_data.devid)) + max_ltr = SKL_MAX_LTR; + + debugfs_root = igt_debugfs_mount(); + igt_assert(debugfs_root); + snprintf(path, sizeof(path), "%s/pmc_core", debugfs_root); + pmc_debugfs = open(path, O_RDONLY); + igt_require(pmc_debugfs != -1); +} + static bool dmc_loaded(void) { char buf[15]; @@ -803,6 +897,14 @@ static void dump_file(int dir, const char *filename) free(contents); } +static void pmc_dump_file(int fd, const char *file) +{ + if (!pmc_loaded) + return; + + dump_file(fd, file); +} + static bool setup_environment(void) { if (has_runtime_pm) @@ -820,6 +922,7 @@ static bool setup_environment(void) pm_data = igt_pm_enable_sata_link_power_management(); has_runtime_pm = igt_setup_runtime_pm(); + setup_pmc(); setup_pc8(); igt_info("Runtime PM support: %d\n", has_runtime_pm); @@ -865,11 +968,36 @@ static void basic_subtest(void) static void pc8_residency_subtest(void) { + bool passed; + int i; igt_require(has_pc8); /* Make sure PC8+ residencies move! */ disable_all_screens(&ms_data); - igt_assert_f(pc8_plus_residency_changed(30), + passed = pc8_plus_residency_changed(30); + + /* Try With powertop --auto-tune */ + if (!passed) { + igt_info("pc8+ residencies byyefore powertop --auto-tune\n"); + pmc_dump_file(pmc_debugfs, "package_cstate_show"); + igt_require(setup_powertop()); + passed = pc8_plus_residency_changed(IGT_TIME_OUT_SEC_10); + + if (!passed) { + igt_info("pc8+ residencies after powertop --auto-tune\n"); + pmc_dump_file(pmc_debugfs, "package_cstate_show"); + } else { + igt_info("pc8+ residencies subtest passed " + "after running powertop --auto-tune\n"); + } + } + /* dump ltr_show and pch_ip_power_gating_status */ + igt_info("pch i/p latency tolerance reporting\n"); + pmc_dump_file(pmc_debugfs, "ltr_show"); + igt_info("pch i/p power gating status\n"); + pmc_dump_file(pmc_debugfs, "pch_ip_power_gating_status"); + + igt_assert_f(passed, "Machine is not reaching PC8+ states, please check its " "configuration.\n"); -- 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] 10+ messages in thread
* [igt-dev] [PATCH i-g-t v7 4/4] DO_NOT_MERGE: adding i915_pm_rpm pc8 subtest to fast feedback list. 2019-06-05 7:54 [igt-dev] [PATCH i-g-t v7 0/4] Enabling PC8+ residency for all GEN9+ platforms v7 Anshuman Gupta ` (2 preceding siblings ...) 2019-06-05 7:54 ` [igt-dev] [PATCH i-g-t v7 3/4] DEBUG: invoke powertop and pmc ltr_ignore when pc8 tests fails Anshuman Gupta @ 2019-06-05 7:54 ` Anshuman Gupta 2019-06-05 8:57 ` [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev8) Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Anshuman Gupta @ 2019-06-05 7:54 UTC (permalink / raw) To: igt-dev Forcing CI to test below sub-test on ICL. pc8-residency modeset-pc8-residency-stress gem-execbuf-stress-pc8 Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/intel-ci/fast-feedback.testlist | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index 40475b1a..2441bbaa 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -218,6 +218,9 @@ igt@kms_setmode@basic-clone-single-crtc igt@i915_pm_backlight@basic-brightness igt@i915_pm_rpm@basic-pci-d3-state igt@i915_pm_rpm@basic-rte +igt@i915_pm_rpm@pc8-residency +igt@i915_pm_rpm@gem-execbuf-stress-pc8 +igt@i915_pm_rpm@modeset-pc8-residency-stress igt@i915_pm_rps@basic-api igt@prime_busy@basic-after-default igt@prime_busy@basic-before-default -- 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] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev8) 2019-06-05 7:54 [igt-dev] [PATCH i-g-t v7 0/4] Enabling PC8+ residency for all GEN9+ platforms v7 Anshuman Gupta ` (3 preceding siblings ...) 2019-06-05 7:54 ` [igt-dev] [PATCH i-g-t v7 4/4] DO_NOT_MERGE: adding i915_pm_rpm pc8 subtest to fast feedback list Anshuman Gupta @ 2019-06-05 8:57 ` Patchwork 2019-06-06 7:44 ` Gupta, Anshuman 2019-06-14 17:09 ` [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev9) Patchwork 2019-06-17 13:27 ` [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev10) Patchwork 6 siblings, 1 reply; 10+ messages in thread From: Patchwork @ 2019-06-05 8:57 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev == Series Details == Series: Enabling PC8+ residency for all GEN9+ platforms (rev8) URL : https://patchwork.freedesktop.org/series/57640/ State : failure == Summary == CI Bug Log - changes from IGT_5038 -> IGTPW_3111 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_3111 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_3111, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://patchwork.freedesktop.org/api/1.0/series/57640/revisions/8/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3111: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@modeset-pc8-residency-stress: - fi-icl-u2: NOTRUN -> [FAIL][1] +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-icl-u2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html - fi-kbl-8809g: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-kbl-8809g/igt@i915_pm_rpm@modeset-pc8-residency-stress.html - fi-skl-6600u: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-skl-6600u/igt@i915_pm_rpm@modeset-pc8-residency-stress.html - fi-kbl-7567u: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-kbl-7567u/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rpm@pc8-residency: - fi-cfl-8109u: NOTRUN -> [FAIL][5] +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-cfl-8109u/igt@i915_pm_rpm@pc8-residency.html - fi-kbl-8809g: NOTRUN -> [DMESG-FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-kbl-8809g/igt@i915_pm_rpm@pc8-residency.html - fi-cml-u2: NOTRUN -> [DMESG-WARN][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-cml-u2/igt@i915_pm_rpm@pc8-residency.html - fi-cml-u: NOTRUN -> [DMESG-WARN][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-cml-u/igt@i915_pm_rpm@pc8-residency.html * igt@i915_selftest@live_timelines: - fi-cfl-8109u: [PASS][9] -> [INCOMPLETE][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-cfl-8109u/igt@i915_selftest@live_timelines.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-cfl-8109u/igt@i915_selftest@live_timelines.html Known issues ------------ Here are the changes found in IGTPW_3111 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3: - fi-blb-e6850: [PASS][11] -> [INCOMPLETE][12] ([fdo#107718]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html * igt@i915_pm_rpm@basic-pci-d3-state: - fi-hsw-4770r: [PASS][13] -> [SKIP][14] ([fdo#109271]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-hsw-4770r/igt@i915_pm_rpm@basic-pci-d3-state.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-hsw-4770r/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-glk-dsi: [PASS][15] -> [SKIP][16] ([fdo#109271]) +2 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-bdw-5557u: [PASS][17] -> [SKIP][18] ([fdo#109271]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bdw-5557u/igt@i915_pm_rpm@basic-pci-d3-state.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bdw-5557u/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-hsw-4770: [PASS][19] -> [SKIP][20] ([fdo#109271]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-bsw-n3050: [PASS][21] -> [SKIP][22] ([fdo#109271]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bsw-n3050/igt@i915_pm_rpm@basic-pci-d3-state.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bsw-n3050/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-byt-n2820: [PASS][23] -> [SKIP][24] ([fdo#109271]) +2 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-byt-n2820/igt@i915_pm_rpm@basic-rte.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-byt-n2820/igt@i915_pm_rpm@basic-rte.html - fi-hsw-peppy: [PASS][25] -> [SKIP][26] ([fdo#109271]) +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-hsw-peppy/igt@i915_pm_rpm@basic-rte.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-hsw-peppy/igt@i915_pm_rpm@basic-rte.html - fi-byt-j1900: [PASS][27] -> [SKIP][28] ([fdo#109271]) +2 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-byt-j1900/igt@i915_pm_rpm@basic-rte.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-byt-j1900/igt@i915_pm_rpm@basic-rte.html - fi-bxt-j4205: [PASS][29] -> [SKIP][30] ([fdo#109271]) +2 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bxt-j4205/igt@i915_pm_rpm@basic-rte.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bxt-j4205/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rpm@module-reload: - fi-bsw-kefka: [PASS][31] -> [SKIP][32] ([fdo#109271]) +2 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html #### Possible fixes #### * igt@gem_ctx_create@basic-files: - fi-icl-dsi: [INCOMPLETE][33] ([fdo#107713] / [fdo#109100]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-icl-dsi/igt@gem_ctx_create@basic-files.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-icl-dsi/igt@gem_ctx_create@basic-files.html * igt@gem_exec_fence@basic-busy-default: - fi-icl-y: [INCOMPLETE][35] ([fdo#107713]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-icl-y/igt@gem_exec_fence@basic-busy-default.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-icl-y/igt@gem_exec_fence@basic-busy-default.html * igt@kms_flip@basic-flip-vs-dpms: - fi-bxt-dsi: [INCOMPLETE][37] ([fdo#103927]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bxt-dsi/igt@kms_flip@basic-flip-vs-dpms.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bxt-dsi/igt@kms_flip@basic-flip-vs-dpms.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#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 Participating hosts (54 -> 46) ------------------------------ Missing (8): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-kbl-7560u fi-byt-clapper fi-bdw-samus Build changes ------------- * IGT: IGT_5038 -> IGTPW_3111 CI_DRM_6190: a35c4bfccae4f050e1d34e1be3e2fdd732693af0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3111: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/ IGT_5038: a34cbc9834aed017d1a452ba42d3e53f9258f8d2 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev8) 2019-06-05 8:57 ` [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev8) Patchwork @ 2019-06-06 7:44 ` Gupta, Anshuman 2019-06-06 8:18 ` Saarinen, Jani 0 siblings, 1 reply; 10+ messages in thread From: Gupta, Anshuman @ 2019-06-06 7:44 UTC (permalink / raw) To: Sarvela, Tomi P, Peres, Martin; +Cc: igt-dev, suresh.kumar.kurmi Hi Martin / Tomi, Below Platform from CI Bat tests (https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3107/?) are not reaching the PC8 state even with display off. fi-icl-u2 fi-cfl-8109u fi-kbl-7567u fi-kbl-8809g fi-skl-6600u These all platform are PCH based platform, these are platform specific issue. Failure logs has dumped PMC (power management controller) sys fs attributes, which are going to help in order to debug these bugs from platform power management context. We need to file bugs for these platform to mark them as known bugs. If we ran this test series on entire Shards platform, we will get list of shard platforms which are not reaching to PC8 state. PS: As these platform failed to reach PC8 state so all of the platform are are also going to fail DC6 IGT test ( https://patchwork.freedesktop.org/series/56713/), as DC6 has dependency on package C state. Thanks , Anshuman Gupta. On 6/5/2019 2:27 PM, Patchwork wrote: > == Series Details == > > Series: Enabling PC8+ residency for all GEN9+ platforms (rev8) > URL : https://patchwork.freedesktop.org/series/57640/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_5038 -> IGTPW_3111 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_3111 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_3111, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: https://patchwork.freedesktop.org/api/1.0/series/57640/revisions/8/mbox/ > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_3111: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_pm_rpm@modeset-pc8-residency-stress: > - fi-icl-u2: NOTRUN -> [FAIL][1] +2 similar issues > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-icl-u2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html > - fi-kbl-8809g: NOTRUN -> [FAIL][2] > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-kbl-8809g/igt@i915_pm_rpm@modeset-pc8-residency-stress.html > - fi-skl-6600u: NOTRUN -> [FAIL][3] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-skl-6600u/igt@i915_pm_rpm@modeset-pc8-residency-stress.html > - fi-kbl-7567u: NOTRUN -> [FAIL][4] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-kbl-7567u/igt@i915_pm_rpm@modeset-pc8-residency-stress.html > > * igt@i915_pm_rpm@pc8-residency: > - fi-cfl-8109u: NOTRUN -> [FAIL][5] +2 similar issues > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-cfl-8109u/igt@i915_pm_rpm@pc8-residency.html > - fi-kbl-8809g: NOTRUN -> [DMESG-FAIL][6] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-kbl-8809g/igt@i915_pm_rpm@pc8-residency.html > - fi-cml-u2: NOTRUN -> [DMESG-WARN][7] > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-cml-u2/igt@i915_pm_rpm@pc8-residency.html > - fi-cml-u: NOTRUN -> [DMESG-WARN][8] > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-cml-u/igt@i915_pm_rpm@pc8-residency.html > > * igt@i915_selftest@live_timelines: > - fi-cfl-8109u: [PASS][9] -> [INCOMPLETE][10] > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-cfl-8109u/igt@i915_selftest@live_timelines.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-cfl-8109u/igt@i915_selftest@live_timelines.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_3111 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_exec_suspend@basic-s3: > - fi-blb-e6850: [PASS][11] -> [INCOMPLETE][12] ([fdo#107718]) > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html > > * igt@i915_pm_rpm@basic-pci-d3-state: > - fi-hsw-4770r: [PASS][13] -> [SKIP][14] ([fdo#109271]) +2 similar issues > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-hsw-4770r/igt@i915_pm_rpm@basic-pci-d3-state.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-hsw-4770r/igt@i915_pm_rpm@basic-pci-d3-state.html > - fi-glk-dsi: [PASS][15] -> [SKIP][16] ([fdo#109271]) +2 similar issues > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html > - fi-bdw-5557u: [PASS][17] -> [SKIP][18] ([fdo#109271]) +2 similar issues > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bdw-5557u/igt@i915_pm_rpm@basic-pci-d3-state.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bdw-5557u/igt@i915_pm_rpm@basic-pci-d3-state.html > - fi-hsw-4770: [PASS][19] -> [SKIP][20] ([fdo#109271]) +2 similar issues > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html > - fi-bsw-n3050: [PASS][21] -> [SKIP][22] ([fdo#109271]) +2 similar issues > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bsw-n3050/igt@i915_pm_rpm@basic-pci-d3-state.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bsw-n3050/igt@i915_pm_rpm@basic-pci-d3-state.html > > * igt@i915_pm_rpm@basic-rte: > - fi-byt-n2820: [PASS][23] -> [SKIP][24] ([fdo#109271]) +2 similar issues > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-byt-n2820/igt@i915_pm_rpm@basic-rte.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-byt-n2820/igt@i915_pm_rpm@basic-rte.html > - fi-hsw-peppy: [PASS][25] -> [SKIP][26] ([fdo#109271]) +2 similar issues > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-hsw-peppy/igt@i915_pm_rpm@basic-rte.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-hsw-peppy/igt@i915_pm_rpm@basic-rte.html > - fi-byt-j1900: [PASS][27] -> [SKIP][28] ([fdo#109271]) +2 similar issues > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-byt-j1900/igt@i915_pm_rpm@basic-rte.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-byt-j1900/igt@i915_pm_rpm@basic-rte.html > - fi-bxt-j4205: [PASS][29] -> [SKIP][30] ([fdo#109271]) +2 similar issues > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bxt-j4205/igt@i915_pm_rpm@basic-rte.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bxt-j4205/igt@i915_pm_rpm@basic-rte.html > > * igt@i915_pm_rpm@module-reload: > - fi-bsw-kefka: [PASS][31] -> [SKIP][32] ([fdo#109271]) +2 similar issues > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html > > > #### Possible fixes #### > > * igt@gem_ctx_create@basic-files: > - fi-icl-dsi: [INCOMPLETE][33] ([fdo#107713] / [fdo#109100]) -> [PASS][34] > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-icl-dsi/igt@gem_ctx_create@basic-files.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-icl-dsi/igt@gem_ctx_create@basic-files.html > > * igt@gem_exec_fence@basic-busy-default: > - fi-icl-y: [INCOMPLETE][35] ([fdo#107713]) -> [PASS][36] > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-icl-y/igt@gem_exec_fence@basic-busy-default.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-icl-y/igt@gem_exec_fence@basic-busy-default.html > > * igt@kms_flip@basic-flip-vs-dpms: > - fi-bxt-dsi: [INCOMPLETE][37] ([fdo#103927]) -> [PASS][38] > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bxt-dsi/igt@kms_flip@basic-flip-vs-dpms.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bxt-dsi/igt@kms_flip@basic-flip-vs-dpms.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#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 > [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 > [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > > > Participating hosts (54 -> 46) > ------------------------------ > > Missing (8): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-kbl-7560u fi-byt-clapper fi-bdw-samus > > > Build changes > ------------- > > * IGT: IGT_5038 -> IGTPW_3111 > > CI_DRM_6190: a35c4bfccae4f050e1d34e1be3e2fdd732693af0 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_3111: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/ > IGT_5038: a34cbc9834aed017d1a452ba42d3e53f9258f8d2 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/ > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev8) 2019-06-06 7:44 ` Gupta, Anshuman @ 2019-06-06 8:18 ` Saarinen, Jani 0 siblings, 0 replies; 10+ messages in thread From: Saarinen, Jani @ 2019-06-06 8:18 UTC (permalink / raw) To: Gupta, Anshuman, Sarvela, Tomi P, Peres, Martin, Hiler, Arkadiusz, Latvala, Petri Cc: igt-dev@lists.freedesktop.org, Kurmi, Suresh Kumar +Petri, Arek. > -----Original Message----- > From: Gupta, Anshuman > Sent: torstai 6. kesäkuuta 2019 10.45 > To: Sarvela, Tomi P <tomi.p.sarvela@intel.com>; Peres, Martin > <martin.peres@intel.com> > Cc: igt-dev@lists.freedesktop.org; Kurmi, Suresh Kumar > <suresh.kumar.kurmi@intel.com>; Saarinen, Jani <jani.saarinen@intel.com>; C, > Ramalingam <ramalingam.c@intel.com> > Subject: Re: ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms > (rev8) > > Hi Martin / Tomi, > > Below Platform from CI Bat tests > (https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3107/?) are not reaching the PC8 > state even with display off. > > fi-icl-u2 > fi-cfl-8109u > fi-kbl-7567u > fi-kbl-8809g > fi-skl-6600u > > These all platform are PCH based platform, these are platform specific issue. Failure > logs has dumped PMC (power management controller) sys fs attributes, which are > going to help in order to debug these bugs from platform power management > context. > > We need to file bugs for these platform to mark them as known bugs. > If we ran this test series on entire Shards platform, we will get list of shard platforms > which are not reaching to PC8 state. > > > PS: > As these platform failed to reach PC8 state so all of the platform are are also going > to fail DC6 IGT test ( https://patchwork.freedesktop.org/series/56713/), as DC6 has > dependency on package C state. > > Thanks , > Anshuman Gupta. > > On 6/5/2019 2:27 PM, Patchwork wrote: > > == Series Details == > > > > Series: Enabling PC8+ residency for all GEN9+ platforms (rev8) > > URL : https://patchwork.freedesktop.org/series/57640/ > > State : failure > > > > == Summary == > > > > CI Bug Log - changes from IGT_5038 -> IGTPW_3111 > > ==================================================== > > > > Summary > > ------- > > > > **FAILURE** > > > > Serious unknown changes coming with IGTPW_3111 absolutely need to be > > verified manually. > > > > If you think the reported changes have nothing to do with the changes > > introduced in IGTPW_3111, please notify your bug team to allow them > > to document this new failure mode, which will reduce false positives in CI. > > > > External URL: > > https://patchwork.freedesktop.org/api/1.0/series/57640/revisions/8/mbo > > x/ > > > > Possible new issues > > ------------------- > > > > Here are the unknown changes that may have been introduced in IGTPW_3111: > > > > ### IGT changes ### > > > > #### Possible regressions #### > > > > * igt@i915_pm_rpm@modeset-pc8-residency-stress: > > - fi-icl-u2: NOTRUN -> [FAIL][1] +2 similar issues > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-icl- > u2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html > > - fi-kbl-8809g: NOTRUN -> [FAIL][2] > > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-kbl- > 8809g/igt@i915_pm_rpm@modeset-pc8-residency-stress.html > > - fi-skl-6600u: NOTRUN -> [FAIL][3] > > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-skl- > 6600u/igt@i915_pm_rpm@modeset-pc8-residency-stress.html > > - fi-kbl-7567u: NOTRUN -> [FAIL][4] > > [4]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-kbl-7567u/igt@i > > 915_pm_rpm@modeset-pc8-residency-stress.html > > > > * igt@i915_pm_rpm@pc8-residency: > > - fi-cfl-8109u: NOTRUN -> [FAIL][5] +2 similar issues > > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-cfl- > 8109u/igt@i915_pm_rpm@pc8-residency.html > > - fi-kbl-8809g: NOTRUN -> [DMESG-FAIL][6] > > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-kbl- > 8809g/igt@i915_pm_rpm@pc8-residency.html > > - fi-cml-u2: NOTRUN -> [DMESG-WARN][7] > > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-cml- > u2/igt@i915_pm_rpm@pc8-residency.html > > - fi-cml-u: NOTRUN -> [DMESG-WARN][8] > > [8]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-cml-u/igt@i915_ > > pm_rpm@pc8-residency.html > > > > * igt@i915_selftest@live_timelines: > > - fi-cfl-8109u: [PASS][9] -> [INCOMPLETE][10] > > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-cfl- > 8109u/igt@i915_selftest@live_timelines.html > > [10]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-cfl-8109u/igt@i > > 915_selftest@live_timelines.html > > > > > > Known issues > > ------------ > > > > Here are the changes found in IGTPW_3111 that come from known issues: > > > > ### IGT changes ### > > > > #### Issues hit #### > > > > * igt@gem_exec_suspend@basic-s3: > > - fi-blb-e6850: [PASS][11] -> [INCOMPLETE][12] ([fdo#107718]) > > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-blb- > e6850/igt@gem_exec_suspend@basic-s3.html > > [12]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-blb-e6850/igt@g > > em_exec_suspend@basic-s3.html > > > > * igt@i915_pm_rpm@basic-pci-d3-state: > > - fi-hsw-4770r: [PASS][13] -> [SKIP][14] ([fdo#109271]) +2 similar issues > > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-hsw- > 4770r/igt@i915_pm_rpm@basic-pci-d3-state.html > > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-hsw- > 4770r/igt@i915_pm_rpm@basic-pci-d3-state.html > > - fi-glk-dsi: [PASS][15] -> [SKIP][16] ([fdo#109271]) +2 similar issues > > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-glk- > dsi/igt@i915_pm_rpm@basic-pci-d3-state.html > > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-glk- > dsi/igt@i915_pm_rpm@basic-pci-d3-state.html > > - fi-bdw-5557u: [PASS][17] -> [SKIP][18] ([fdo#109271]) +2 similar issues > > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bdw- > 5557u/igt@i915_pm_rpm@basic-pci-d3-state.html > > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bdw- > 5557u/igt@i915_pm_rpm@basic-pci-d3-state.html > > - fi-hsw-4770: [PASS][19] -> [SKIP][20] ([fdo#109271]) +2 similar issues > > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-hsw- > 4770/igt@i915_pm_rpm@basic-pci-d3-state.html > > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-hsw- > 4770/igt@i915_pm_rpm@basic-pci-d3-state.html > > - fi-bsw-n3050: [PASS][21] -> [SKIP][22] ([fdo#109271]) +2 similar issues > > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bsw- > n3050/igt@i915_pm_rpm@basic-pci-d3-state.html > > [22]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bsw-n3050/igt@i > > 915_pm_rpm@basic-pci-d3-state.html > > > > * igt@i915_pm_rpm@basic-rte: > > - fi-byt-n2820: [PASS][23] -> [SKIP][24] ([fdo#109271]) +2 similar issues > > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-byt- > n2820/igt@i915_pm_rpm@basic-rte.html > > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-byt- > n2820/igt@i915_pm_rpm@basic-rte.html > > - fi-hsw-peppy: [PASS][25] -> [SKIP][26] ([fdo#109271]) +2 similar issues > > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-hsw- > peppy/igt@i915_pm_rpm@basic-rte.html > > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-hsw- > peppy/igt@i915_pm_rpm@basic-rte.html > > - fi-byt-j1900: [PASS][27] -> [SKIP][28] ([fdo#109271]) +2 similar issues > > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-byt- > j1900/igt@i915_pm_rpm@basic-rte.html > > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-byt- > j1900/igt@i915_pm_rpm@basic-rte.html > > - fi-bxt-j4205: [PASS][29] -> [SKIP][30] ([fdo#109271]) +2 similar issues > > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bxt- > j4205/igt@i915_pm_rpm@basic-rte.html > > [30]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bxt-j4205/igt@i > > 915_pm_rpm@basic-rte.html > > > > * igt@i915_pm_rpm@module-reload: > > - fi-bsw-kefka: [PASS][31] -> [SKIP][32] ([fdo#109271]) +2 similar issues > > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bsw- > kefka/igt@i915_pm_rpm@module-reload.html > > [32]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bsw-kefka/igt@i > > 915_pm_rpm@module-reload.html > > > > > > #### Possible fixes #### > > > > * igt@gem_ctx_create@basic-files: > > - fi-icl-dsi: [INCOMPLETE][33] ([fdo#107713] / [fdo#109100]) -> [PASS][34] > > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-icl- > dsi/igt@gem_ctx_create@basic-files.html > > [34]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-icl-dsi/igt@gem > > _ctx_create@basic-files.html > > > > * igt@gem_exec_fence@basic-busy-default: > > - fi-icl-y: [INCOMPLETE][35] ([fdo#107713]) -> [PASS][36] > > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-icl- > y/igt@gem_exec_fence@basic-busy-default.html > > [36]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-icl-y/igt@gem_e > > xec_fence@basic-busy-default.html > > > > * igt@kms_flip@basic-flip-vs-dpms: > > - fi-bxt-dsi: [INCOMPLETE][37] ([fdo#103927]) -> [PASS][38] > > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5038/fi-bxt- > dsi/igt@kms_flip@basic-flip-vs-dpms.html > > [38]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/fi-bxt-dsi/igt@kms > > _flip@basic-flip-vs-dpms.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#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 > > [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 > > [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100 > > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > > > > > > Participating hosts (54 -> 46) > > ------------------------------ > > > > Missing (8): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi- > kbl-7560u fi-byt-clapper fi-bdw-samus > > > > > > Build changes > > ------------- > > > > * IGT: IGT_5038 -> IGTPW_3111 > > > > CI_DRM_6190: a35c4bfccae4f050e1d34e1be3e2fdd732693af0 @ > git://anongit.freedesktop.org/gfx-ci/linux > > IGTPW_3111: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/ > > IGT_5038: a34cbc9834aed017d1a452ba42d3e53f9258f8d2 @ > > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > > > == Logs == > > > > For more details see: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3111/ > > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev9) 2019-06-05 7:54 [igt-dev] [PATCH i-g-t v7 0/4] Enabling PC8+ residency for all GEN9+ platforms v7 Anshuman Gupta ` (4 preceding siblings ...) 2019-06-05 8:57 ` [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev8) Patchwork @ 2019-06-14 17:09 ` Patchwork 2019-06-17 13:27 ` [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev10) Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2019-06-14 17:09 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev == Series Details == Series: Enabling PC8+ residency for all GEN9+ platforms (rev9) URL : https://patchwork.freedesktop.org/series/57640/ State : failure == Summary == CI Bug Log - changes from IGT_5056 -> IGTPW_3150 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_3150 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_3150, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://patchwork.freedesktop.org/api/1.0/series/57640/revisions/9/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3150: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - fi-cfl-8109u: NOTRUN -> [FAIL][1] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-cfl-8109u/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@pc8-residency: - fi-icl-u2: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-icl-u2/igt@i915_pm_rpm@pc8-residency.html - fi-kbl-8809g: NOTRUN -> [DMESG-FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-kbl-8809g/igt@i915_pm_rpm@pc8-residency.html - fi-icl-y: NOTRUN -> [DMESG-WARN][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-icl-y/igt@i915_pm_rpm@pc8-residency.html - fi-cml-u2: NOTRUN -> [DMESG-WARN][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-cml-u2/igt@i915_pm_rpm@pc8-residency.html - fi-cml-u: NOTRUN -> [DMESG-WARN][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-cml-u/igt@i915_pm_rpm@pc8-residency.html * igt@i915_selftest@live_timelines: - fi-cfl-8109u: [PASS][7] -> [INCOMPLETE][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-cfl-8109u/igt@i915_selftest@live_timelines.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-cfl-8109u/igt@i915_selftest@live_timelines.html Known issues ------------ Here are the changes found in IGTPW_3150 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-hsw-4770r: [PASS][9] -> [SKIP][10] ([fdo#109271]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-hsw-4770r/igt@i915_pm_rpm@basic-pci-d3-state.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-hsw-4770r/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-glk-dsi: [PASS][11] -> [SKIP][12] ([fdo#109271]) +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-bdw-5557u: [PASS][13] -> [SKIP][14] ([fdo#109271]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-bdw-5557u/igt@i915_pm_rpm@basic-pci-d3-state.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-bdw-5557u/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-hsw-4770: [PASS][15] -> [SKIP][16] ([fdo#109271]) +2 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-bxt-dsi: [PASS][17] -> [SKIP][18] ([fdo#109271]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-bsw-n3050: [PASS][19] -> [SKIP][20] ([fdo#109271]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-bsw-n3050/igt@i915_pm_rpm@basic-pci-d3-state.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-bsw-n3050/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-byt-n2820: [PASS][21] -> [SKIP][22] ([fdo#109271]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-byt-n2820/igt@i915_pm_rpm@basic-rte.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-byt-n2820/igt@i915_pm_rpm@basic-rte.html - fi-byt-j1900: [PASS][23] -> [SKIP][24] ([fdo#109271]) +2 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-byt-j1900/igt@i915_pm_rpm@basic-rte.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-byt-j1900/igt@i915_pm_rpm@basic-rte.html - fi-bxt-j4205: [PASS][25] -> [SKIP][26] ([fdo#109271]) +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-bxt-j4205/igt@i915_pm_rpm@basic-rte.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-bxt-j4205/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rpm@module-reload: - fi-bsw-kefka: [PASS][27] -> [SKIP][28] ([fdo#109271]) +2 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html - fi-apl-guc: [PASS][29] -> [SKIP][30] ([fdo#109271]) +2 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-apl-guc/igt@i915_pm_rpm@module-reload.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-apl-guc/igt@i915_pm_rpm@module-reload.html * igt@kms_frontbuffer_tracking@basic: - fi-icl-u2: [PASS][31] -> [FAIL][32] ([fdo#103167]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html #### Possible fixes #### * igt@prime_vgem@basic-fence-flip: - fi-ilk-650: [DMESG-WARN][33] ([fdo#106387]) -> [PASS][34] +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5056/fi-ilk-650/igt@prime_vgem@basic-fence-flip.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/fi-ilk-650/igt@prime_vgem@basic-fence-flip.html [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#106387]: https://bugs.freedesktop.org/show_bug.cgi?id=106387 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 Participating hosts (54 -> 44) ------------------------------ Missing (10): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-hsw-peppy fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-icl-u3 fi-icl-dsi fi-bdw-samus Build changes ------------- * IGT: IGT_5056 -> IGTPW_3150 CI_DRM_6265: 657b9f601946cab518d8911ea92dc0f437a1f4b4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3150: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/ IGT_5056: c7b717f0126374a02fc86de5eb5fb1f3e7b3335b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3150/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev10) 2019-06-05 7:54 [igt-dev] [PATCH i-g-t v7 0/4] Enabling PC8+ residency for all GEN9+ platforms v7 Anshuman Gupta ` (5 preceding siblings ...) 2019-06-14 17:09 ` [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev9) Patchwork @ 2019-06-17 13:27 ` Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2019-06-17 13:27 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev == Series Details == Series: Enabling PC8+ residency for all GEN9+ platforms (rev10) URL : https://patchwork.freedesktop.org/series/57640/ State : failure == Summary == CI Bug Log - changes from CI_DRM_6284 -> IGTPW_3157 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_3157 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_3157, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://patchwork.freedesktop.org/api/1.0/series/57640/revisions/10/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3157: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live_timelines: - fi-cfl-8109u: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-cfl-8109u/igt@i915_selftest@live_timelines.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-cfl-8109u/igt@i915_selftest@live_timelines.html Known issues ------------ Here are the changes found in IGTPW_3157 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_flink_basic@basic: - 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_6284/fi-icl-u3/igt@gem_flink_basic@basic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-icl-u3/igt@gem_flink_basic@basic.html * igt@i915_pm_rpm@basic-pci-d3-state: - fi-hsw-4770r: [PASS][5] -> [SKIP][6] ([fdo#109271]) +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-hsw-4770r/igt@i915_pm_rpm@basic-pci-d3-state.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-hsw-4770r/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-glk-dsi: [PASS][7] -> [SKIP][8] ([fdo#109271]) +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-bdw-5557u: [PASS][9] -> [SKIP][10] ([fdo#109271]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-bdw-5557u/igt@i915_pm_rpm@basic-pci-d3-state.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-bdw-5557u/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-hsw-4770: [PASS][11] -> [SKIP][12] ([fdo#109271]) +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-bxt-dsi: [PASS][13] -> [SKIP][14] ([fdo#109271]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-bsw-n3050: [PASS][15] -> [SKIP][16] ([fdo#109271]) +2 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-bsw-n3050/igt@i915_pm_rpm@basic-pci-d3-state.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-bsw-n3050/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-byt-n2820: [PASS][17] -> [SKIP][18] ([fdo#109271]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-byt-n2820/igt@i915_pm_rpm@basic-rte.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-byt-n2820/igt@i915_pm_rpm@basic-rte.html - fi-hsw-peppy: [PASS][19] -> [SKIP][20] ([fdo#109271]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-hsw-peppy/igt@i915_pm_rpm@basic-rte.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-hsw-peppy/igt@i915_pm_rpm@basic-rte.html - fi-byt-j1900: [PASS][21] -> [SKIP][22] ([fdo#109271]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-byt-j1900/igt@i915_pm_rpm@basic-rte.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-byt-j1900/igt@i915_pm_rpm@basic-rte.html - fi-bxt-j4205: [PASS][23] -> [SKIP][24] ([fdo#109271]) +2 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-bxt-j4205/igt@i915_pm_rpm@basic-rte.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-bxt-j4205/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rpm@module-reload: - fi-bsw-kefka: [PASS][25] -> [SKIP][26] ([fdo#109271]) +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html - fi-apl-guc: [PASS][27] -> [SKIP][28] ([fdo#109271]) +2 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-apl-guc/igt@i915_pm_rpm@module-reload.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-apl-guc/igt@i915_pm_rpm@module-reload.html #### Possible fixes #### * igt@gem_mmap_gtt@basic-small-bo: - fi-icl-u3: [DMESG-WARN][29] ([fdo#107724]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-icl-u3/igt@gem_mmap_gtt@basic-small-bo.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-icl-u3/igt@gem_mmap_gtt@basic-small-bo.html * igt@i915_selftest@live_hangcheck: - fi-icl-u2: [INCOMPLETE][31] ([fdo#107713] / [fdo#108569]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-icl-u2/igt@i915_selftest@live_hangcheck.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-icl-u2/igt@i915_selftest@live_hangcheck.html * igt@kms_frontbuffer_tracking@basic: - fi-icl-u2: [FAIL][33] ([fdo#103167]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6284/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 Participating hosts (44 -> 38) ------------------------------ Additional (2): fi-icl-dsi fi-pnv-d510 Missing (8): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-kbl-8809g fi-byt-clapper fi-bdw-samus Build changes ------------- * IGT: IGT_5057 -> IGTPW_3157 CI_DRM_6284: f992a9cb038edbdd5ff20a1ed3410e8b95879bcf @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3157: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/ IGT_5057: 3b91c82b90d45c1a30569410c1142b541956740a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3157/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2019-06-17 13:27 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-06-05 7:54 [igt-dev] [PATCH i-g-t v7 0/4] Enabling PC8+ residency for all GEN9+ platforms v7 Anshuman Gupta 2019-06-05 7:54 ` [igt-dev] [PATCH i-g-t v7 1/4] tests/i915/i915_pm_rpm: Enable PC8+ residency test for all Gen9+ Anshuman Gupta 2019-06-05 7:54 ` [igt-dev] [PATCH i-g-t v7 2/4] tests/i915/i915_pm_rpm: modeset-pc8-residency-stress Anshuman Gupta 2019-06-05 7:54 ` [igt-dev] [PATCH i-g-t v7 3/4] DEBUG: invoke powertop and pmc ltr_ignore when pc8 tests fails Anshuman Gupta 2019-06-05 7:54 ` [igt-dev] [PATCH i-g-t v7 4/4] DO_NOT_MERGE: adding i915_pm_rpm pc8 subtest to fast feedback list Anshuman Gupta 2019-06-05 8:57 ` [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev8) Patchwork 2019-06-06 7:44 ` Gupta, Anshuman 2019-06-06 8:18 ` Saarinen, Jani 2019-06-14 17:09 ` [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev9) Patchwork 2019-06-17 13:27 ` [igt-dev] ✗ Fi.CI.BAT: failure for Enabling PC8+ residency for all GEN9+ platforms (rev10) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox