* [igt-dev] [PATCH i-g-t v4 0/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4
@ 2019-05-06 11:24 Anshuman Gupta
2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 1/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 Anshuman Gupta
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Anshuman Gupta @ 2019-05-06 11:24 UTC (permalink / raw)
To: igt-dev
i915_pm_lpsp patch, sending v4 version after addressing
review comments and fixing IGT failures for test method.
This series has added i915_pm_lpsp subtests to CI fast
feedback list in order to run cover these subtest on all
affected platforms.
Revision 1 Link: https://patchwork.freedesktop.org/series/58051/
Revision 2 Link: https://patchwork.freedesktop.org/series/59048/
Anshuman Gupta (4):
igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11.
igt/i915/i915_pm_lpsp check lpsp relevance on non edp panel.
igt/i915/i915_pm_lpsp skip edp-panel-fitter test.
DO_NOT_MERGE add i915_pm_lpsp subtests to CI fast feedback list.
tests/i915/i915_pm_lpsp.c | 143 +++++++++++++++++++++++++++++-----
tests/intel-ci/fast-feedback.testlist | 4 +
2 files changed, 129 insertions(+), 18 deletions(-)
--
2.7.4
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread* [igt-dev] [PATCH i-g-t v4 1/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11. 2019-05-06 11:24 [igt-dev] [PATCH i-g-t v4 0/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 Anshuman Gupta @ 2019-05-06 11:24 ` Anshuman Gupta 2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 2/4] igt/i915/i915_pm_lpsp check lpsp relevance on non edp panel Anshuman Gupta ` (3 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Anshuman Gupta @ 2019-05-06 11:24 UTC (permalink / raw) To: igt-dev Enabling i915_pm_lpsp igt tests for all platforms till Gen11. Earlier these test were enabled only on haswell and broadwell platforms. v2: Removed global no_lpsp_pw_idx. [Animesh] Check only state value for power well. [Animesh] Adding igt_wait of 1 second as sometimes screens_disabled test fails because AUDIO power domain was having non-zero power domain reference count.[Imre] Dumping i915_pm_runtime_status and i915_power_domain_info in case test fails.[Imre] Cc: imre.deak@intel.com Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/i915/i915_pm_lpsp.c | 83 +++++++++++++++++++++++++++++++++++++---------- 1 file changed, 66 insertions(+), 17 deletions(-) diff --git a/tests/i915/i915_pm_lpsp.c b/tests/i915/i915_pm_lpsp.c index b319dbe..d09eec4 100644 --- a/tests/i915/i915_pm_lpsp.c +++ b/tests/i915/i915_pm_lpsp.c @@ -30,26 +30,64 @@ #include <fcntl.h> #include <unistd.h> +#include "igt_sysfs.h" + +#define HSW_PW_CTL_IDX_GLOBAL 15 +#define SKL_PW_CTL_IDX_PW_2 15 +#define ICL_PW_CTL_IDX_PW_3 2 + +#define HSW_PWR_WELL_CTL_REQ(pw_idx) (0x2 << ((pw_idx) * 2)) +#define HSW_PWR_WELL_CTL_STATE(pw_idx) (0x1 << ((pw_idx) * 2)) + +#define DUMP_DBGFS(file1, file2, fd) \ + "%s:\n%s\n%s:\n%s\n", file1, \ + igt_sysfs_get(fd, file1), file2, \ + igt_sysfs_get(fd, file2) \ static bool supports_lpsp(uint32_t devid) { - return IS_HASWELL(devid) || IS_BROADWELL(devid); + return IS_HASWELL(devid) || IS_BROADWELL(devid) + || AT_LEAST_GEN(devid, 9); } -static bool lpsp_is_enabled(int drm_fd) +static int get_no_lpsp_pw_idx(uint32_t devid) { - uint32_t val; + int no_lpsp_pw_idx; + + if (IS_HASWELL(devid) || IS_BROADWELL(devid)) + no_lpsp_pw_idx = HSW_PW_CTL_IDX_GLOBAL; + else if (IS_GEN(devid, 11)) + no_lpsp_pw_idx = ICL_PW_CTL_IDX_PW_3; + else if (AT_LEAST_GEN(devid, 9)) + no_lpsp_pw_idx = SKL_PW_CTL_IDX_PW_2; + else + no_lpsp_pw_idx = -1; + + return no_lpsp_pw_idx; +} + +static bool lpsp_is_enabled(uint32_t devid) +{ + uint32_t val, mask; + int pw_idx; + + pw_idx = get_no_lpsp_pw_idx(devid); + igt_require(pw_idx > 0); + mask = HSW_PWR_WELL_CTL_STATE(pw_idx); val = INREG(HSW_PWR_WELL_CTL2); - return !(val & HSW_PWR_WELL_STATE_ENABLED); + return !(val & mask); } /* The LPSP mode is all about an enabled pipe, but we expect to also be in the * low power mode when no pipes are enabled, so do this check anyway. */ -static void screens_disabled_subtest(int drm_fd, drmModeResPtr drm_res) +static void screens_disabled_subtest(int drm_fd, drmModeResPtr drm_res, + uint32_t devid, int fd) { kmstest_unset_all_crtcs(drm_fd, drm_res); - igt_assert(lpsp_is_enabled(drm_fd)); + igt_assert_f(igt_wait(lpsp_is_enabled(devid), 1000, 100), + DUMP_DBGFS("i915_runtime_pm_status", + "i915_power_domain_info", fd)); } static uint32_t create_fb(int drm_fd, int width, int height) @@ -62,7 +100,7 @@ static uint32_t create_fb(int drm_fd, int width, int height) static void edp_subtest(int drm_fd, drmModeResPtr drm_res, drmModeConnectorPtr *drm_connectors, uint32_t devid, - bool use_panel_fitter) + bool use_panel_fitter, int fd) { int i, rc; uint32_t crtc_id = 0, buffer_id = 0; @@ -133,16 +171,18 @@ static void edp_subtest(int drm_fd, drmModeResPtr drm_res, if (use_panel_fitter) { if (IS_HASWELL(devid)) - igt_assert(!lpsp_is_enabled(drm_fd)); + igt_assert(!lpsp_is_enabled(devid)); else - igt_assert(lpsp_is_enabled(drm_fd)); + igt_assert(lpsp_is_enabled(devid)); } else { - igt_assert(lpsp_is_enabled(drm_fd)); + igt_assert_f(igt_wait(lpsp_is_enabled(devid), 1000, 100), + DUMP_DBGFS("i915_runtime_pm_status", + "i915_power_domain_info", fd)); } } -static void non_edp_subtest(int drm_fd, drmModeResPtr drm_res, - drmModeConnectorPtr *drm_connectors) +static void non_edp_subtest(int drm_fd, drmModeResPtr drm_res, uint32_t devid, + drmModeConnectorPtr *drm_connectors, int fd) { int i, rc; uint32_t crtc_id = 0, buffer_id = 0; @@ -178,7 +218,10 @@ static void non_edp_subtest(int drm_fd, drmModeResPtr drm_res, &connector->connector_id, 1, mode); igt_assert_eq(rc, 0); - igt_assert(!lpsp_is_enabled(drm_fd)); + igt_assert(!lpsp_is_enabled(devid)); + igt_assert_f(igt_wait(!lpsp_is_enabled(devid), 1000, 100), + DUMP_DBGFS("i915_runtime_pm_status", + "i915_power_domain_info", fd)); } #define MAX_CONNECTORS 32 @@ -190,6 +233,7 @@ drmModeConnectorPtr drm_connectors[MAX_CONNECTORS]; igt_main { + int debugfs; igt_fixture { int i; @@ -212,17 +256,22 @@ igt_main intel_register_access_init(intel_get_pci_device(), 0, drm_fd); + igt_require(get_no_lpsp_pw_idx(devid) > 0); kmstest_set_vt_graphics_mode(); + debugfs = igt_debugfs_dir(drm_fd); } igt_subtest("screens-disabled") - screens_disabled_subtest(drm_fd, drm_res); + screens_disabled_subtest(drm_fd, drm_res, devid, debugfs); igt_subtest("edp-native") - edp_subtest(drm_fd, drm_res, drm_connectors, devid, false); + edp_subtest(drm_fd, drm_res, drm_connectors, devid, false, + debugfs); igt_subtest("edp-panel-fitter") - edp_subtest(drm_fd, drm_res, drm_connectors, devid, true); + edp_subtest(drm_fd, drm_res, drm_connectors, devid, true, + debugfs); igt_subtest("non-edp") - non_edp_subtest(drm_fd, drm_res, drm_connectors); + non_edp_subtest(drm_fd, drm_res, devid, drm_connectors, + debugfs); igt_fixture { int i; -- 2.7.4 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t v4 2/4] igt/i915/i915_pm_lpsp check lpsp relevance on non edp panel. 2019-05-06 11:24 [igt-dev] [PATCH i-g-t v4 0/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 Anshuman Gupta 2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 1/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 Anshuman Gupta @ 2019-05-06 11:24 ` Anshuman Gupta 2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 3/4] igt/i915/i915_pm_lpsp skip edp-panel-fitter test Anshuman Gupta ` (2 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Anshuman Gupta @ 2019-05-06 11:24 UTC (permalink / raw) To: igt-dev Earlier on HSW/BDW it was assumed that only eDP panel will act as lpsp. But that is not true now. So checking whether a non edp panel can act as lpsp or not. v2: CI igt fixures. v3: CI igt fixture. Cc: imre.deak@intel.com Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/i915/i915_pm_lpsp.c | 63 ++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 59 insertions(+), 4 deletions(-) diff --git a/tests/i915/i915_pm_lpsp.c b/tests/i915/i915_pm_lpsp.c index d09eec4..baf03b2 100644 --- a/tests/i915/i915_pm_lpsp.c +++ b/tests/i915/i915_pm_lpsp.c @@ -38,6 +38,7 @@ #define HSW_PWR_WELL_CTL_REQ(pw_idx) (0x2 << ((pw_idx) * 2)) #define HSW_PWR_WELL_CTL_STATE(pw_idx) (0x1 << ((pw_idx) * 2)) +#define LPSP_PORT 'A' #define DUMP_DBGFS(file1, file2, fd) \ "%s:\n%s\n%s:\n%s\n", file1, \ @@ -79,6 +80,55 @@ static bool lpsp_is_enabled(uint32_t devid) return !(val & mask); } +static bool is_non_edp_ddia_port(FILE *file, char *info) +{ + int ret; + char ddi[256]; + char port; + bool ddi_a_port = false; + + while (fgets(info, 256, file)) { + if (strstr(info, "encoder")) { + ret = sscanf(info, "%*s %*s %*s %s %c", ddi, &port); + igt_assert_eq(ret, 2); + if (!strcmp(ddi, "DDI") && port == LPSP_PORT) + ddi_a_port = true; + } + if (strstr(info, "connector") && strstr(info, "eDP")) + ddi_a_port = false; + } + return ddi_a_port; +} + +static bool non_edp_lpsp_check(int device) +{ + char tmp[256]; + FILE *file; + int line; + int fd; + bool is_lpsp = false; + + fd = igt_debugfs_open(device, "i915_display_info", O_RDONLY); + file = fdopen(fd, "r"); + igt_skip_on(!file); + + line = 0; + while (fgets(tmp, 256, file)) { + if (strstr(tmp, "CRTC") && line > 0) { + if (strstr(tmp, "pipe: A") && + strstr(tmp, "active=yes")) { + is_lpsp = is_non_edp_ddia_port(file, tmp); + break; + } + } + line++; + } + + fclose(file); + close(fd); + return is_lpsp; +} + /* The LPSP mode is all about an enabled pipe, but we expect to also be in the * low power mode when no pipes are enabled, so do this check anyway. */ static void screens_disabled_subtest(int drm_fd, drmModeResPtr drm_res, @@ -218,10 +268,15 @@ static void non_edp_subtest(int drm_fd, drmModeResPtr drm_res, uint32_t devid, &connector->connector_id, 1, mode); igt_assert_eq(rc, 0); - igt_assert(!lpsp_is_enabled(devid)); - igt_assert_f(igt_wait(!lpsp_is_enabled(devid), 1000, 100), - DUMP_DBGFS("i915_runtime_pm_status", - "i915_power_domain_info", fd)); + if (non_edp_lpsp_check(drm_fd) || + connector->connector_type == DRM_MODE_CONNECTOR_DSI) + igt_assert_f(igt_wait(lpsp_is_enabled(devid), 1000, 100), + DUMP_DBGFS("i915_runtime_pm_status", + "i915_power_domain_info", fd)); + else + igt_assert_f(igt_wait(!lpsp_is_enabled(devid), 1000, 100), + DUMP_DBGFS("i915_runtime_pm_status", + "i915_power_domain_info", fd)); } #define MAX_CONNECTORS 32 -- 2.7.4 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t v4 3/4] igt/i915/i915_pm_lpsp skip edp-panel-fitter test. 2019-05-06 11:24 [igt-dev] [PATCH i-g-t v4 0/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 Anshuman Gupta 2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 1/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 Anshuman Gupta 2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 2/4] igt/i915/i915_pm_lpsp check lpsp relevance on non edp panel Anshuman Gupta @ 2019-05-06 11:24 ` Anshuman Gupta 2019-05-06 13:08 ` Jani Nikula 2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 4/4] DO_NOT_MERGE add i915_pm_lpsp subtests to CI fast feedback list Anshuman Gupta 2019-05-06 12:07 ` [igt-dev] ✗ Fi.CI.BAT: failure for igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 Patchwork 4 siblings, 1 reply; 9+ messages in thread From: Anshuman Gupta @ 2019-05-06 11:24 UTC (permalink / raw) To: igt-dev Skip edp-panel-fitter test for Gen9 onwards platform. Cc: imre.deak@intel.com Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/i915/i915_pm_lpsp.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/i915/i915_pm_lpsp.c b/tests/i915/i915_pm_lpsp.c index baf03b2..829aff5 100644 --- a/tests/i915/i915_pm_lpsp.c +++ b/tests/i915/i915_pm_lpsp.c @@ -321,9 +321,12 @@ igt_main igt_subtest("edp-native") edp_subtest(drm_fd, drm_res, drm_connectors, devid, false, debugfs); - igt_subtest("edp-panel-fitter") + igt_subtest("edp-panel-fitter") { + igt_skip_on(AT_LEAST_GEN(devid, 9)); edp_subtest(drm_fd, drm_res, drm_connectors, devid, true, debugfs); + } + igt_subtest("non-edp") non_edp_subtest(drm_fd, drm_res, devid, drm_connectors, debugfs); -- 2.7.4 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 3/4] igt/i915/i915_pm_lpsp skip edp-panel-fitter test. 2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 3/4] igt/i915/i915_pm_lpsp skip edp-panel-fitter test Anshuman Gupta @ 2019-05-06 13:08 ` Jani Nikula 0 siblings, 0 replies; 9+ messages in thread From: Jani Nikula @ 2019-05-06 13:08 UTC (permalink / raw) To: Anshuman Gupta, igt-dev On Mon, 06 May 2019, Anshuman Gupta <anshuman.gupta@intel.com> wrote: > Skip edp-panel-fitter test for Gen9 onwards platform. We can see that. The commit message should tell us *why*. BR, Jani. > > Cc: imre.deak@intel.com > Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> > --- > tests/i915/i915_pm_lpsp.c | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/tests/i915/i915_pm_lpsp.c b/tests/i915/i915_pm_lpsp.c > index baf03b2..829aff5 100644 > --- a/tests/i915/i915_pm_lpsp.c > +++ b/tests/i915/i915_pm_lpsp.c > @@ -321,9 +321,12 @@ igt_main > igt_subtest("edp-native") > edp_subtest(drm_fd, drm_res, drm_connectors, devid, false, > debugfs); > - igt_subtest("edp-panel-fitter") > + igt_subtest("edp-panel-fitter") { > + igt_skip_on(AT_LEAST_GEN(devid, 9)); > edp_subtest(drm_fd, drm_res, drm_connectors, devid, true, > debugfs); > + } > + > igt_subtest("non-edp") > non_edp_subtest(drm_fd, drm_res, devid, drm_connectors, > debugfs); -- Jani Nikula, Intel Open Source Graphics Center _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t v4 4/4] DO_NOT_MERGE add i915_pm_lpsp subtests to CI fast feedback list. 2019-05-06 11:24 [igt-dev] [PATCH i-g-t v4 0/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 Anshuman Gupta ` (2 preceding siblings ...) 2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 3/4] igt/i915/i915_pm_lpsp skip edp-panel-fitter test Anshuman Gupta @ 2019-05-06 11:24 ` Anshuman Gupta 2019-05-06 12:07 ` [igt-dev] ✗ Fi.CI.BAT: failure for igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Anshuman Gupta @ 2019-05-06 11:24 UTC (permalink / raw) To: igt-dev This patch adds below i915_pm_lpsp subtests to CI fast feedback list in order to test these subtest on ICL (which is affected platform). Subtests: screens-disabled edp-native edp-panel-fitter non-edp Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/intel-ci/fast-feedback.testlist | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index 40475b1..670f0a2 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -216,6 +216,10 @@ igt@kms_psr@sprite_plane_onoff igt@kms_psr@primary_mmap_gtt igt@kms_setmode@basic-clone-single-crtc igt@i915_pm_backlight@basic-brightness +igt@i915_pm_lpsp@edp-native +igt@i915_pm_lpsp@edp-panel-fitter +igt@i915_pm_lpsp@non-edp +igt@i915_pm_lpsp@screens-disabled igt@i915_pm_rpm@basic-pci-d3-state igt@i915_pm_rpm@basic-rte igt@i915_pm_rps@basic-api -- 2.7.4 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 2019-05-06 11:24 [igt-dev] [PATCH i-g-t v4 0/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 Anshuman Gupta ` (3 preceding siblings ...) 2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 4/4] DO_NOT_MERGE add i915_pm_lpsp subtests to CI fast feedback list Anshuman Gupta @ 2019-05-06 12:07 ` Patchwork 2019-05-08 8:29 ` Gupta, Anshuman 4 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2019-05-06 12:07 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev == Series Details == Series: igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 URL : https://patchwork.freedesktop.org/series/60321/ State : failure == Summary == CI Bug Log - changes from CI_DRM_6049 -> IGTPW_2943 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_2943 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_2943, 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/60321/revisions/1/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_2943: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_lpsp@edp-panel-fitter: - fi-icl-y: NOTRUN -> [SKIP][1] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-icl-y/igt@i915_pm_lpsp@edp-panel-fitter.html - fi-icl-u3: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-icl-u3/igt@i915_pm_lpsp@edp-panel-fitter.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_pm_lpsp@edp-panel-fitter: - {fi-icl-u2}: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-icl-u2/igt@i915_pm_lpsp@edp-panel-fitter.html - {fi-cml-u}: NOTRUN -> [SKIP][4] +1 similar issue [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-cml-u/igt@i915_pm_lpsp@edp-panel-fitter.html - {fi-cml-u2}: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-cml-u2/igt@i915_pm_lpsp@edp-panel-fitter.html Known issues ------------ Here are the changes found in IGTPW_2943 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_busy@basic-flip-a: - fi-kbl-7567u: [PASS][6] -> [SKIP][7] ([fdo#109271] / [fdo#109278]) +2 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - fi-skl-6770hq: [FAIL][8] ([fdo#108511]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live_contexts: - fi-skl-gvtdvm: [DMESG-FAIL][10] ([fdo#110235]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-skl-gvtdvm/igt@i915_selftest@live_contexts.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-skl-gvtdvm/igt@i915_selftest@live_contexts.html * igt@i915_selftest@live_evict: - fi-bsw-kefka: [DMESG-WARN][12] ([fdo#107709]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-bsw-kefka/igt@i915_selftest@live_evict.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-bsw-kefka/igt@i915_selftest@live_evict.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - fi-blb-e6850: [INCOMPLETE][14] ([fdo#107718] / [fdo#110581]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-blb-e6850/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-blb-e6850/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html #### Warnings #### * igt@i915_selftest@live_guc: - fi-apl-guc: [INCOMPLETE][16] ([fdo#103927] / [fdo#110581]) -> [INCOMPLETE][17] ([fdo#103927]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-apl-guc/igt@i915_selftest@live_guc.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-apl-guc/igt@i915_selftest@live_guc.html * igt@i915_selftest@live_hangcheck: - fi-icl-y: [INCOMPLETE][18] ([fdo#107713] / [fdo#108569] / [fdo#110581]) -> [INCOMPLETE][19] ([fdo#107713] / [fdo#108569]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-icl-y/igt@i915_selftest@live_hangcheck.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-icl-y/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#107709]: https://bugs.freedesktop.org/show_bug.cgi?id=107709 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#110235]: https://bugs.freedesktop.org/show_bug.cgi?id=110235 [fdo#110581]: https://bugs.freedesktop.org/show_bug.cgi?id=110581 Participating hosts (50 -> 45) ------------------------------ Additional (2): fi-icl-u2 fi-pnv-d510 Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus Build changes ------------- * IGT: IGT_4972 -> IGTPW_2943 CI_DRM_6049: 5e6e5018d74f5ae297db088c45cea19f939fb225 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2943: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/ IGT_4972: f052e49a43cc9704ea5f240df15dd9d3dfed68ab @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 2019-05-06 12:07 ` [igt-dev] ✗ Fi.CI.BAT: failure for igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 Patchwork @ 2019-05-08 8:29 ` Gupta, Anshuman 2019-05-08 10:39 ` Ville Syrjälä 0 siblings, 1 reply; 9+ messages in thread From: Gupta, Anshuman @ 2019-05-08 8:29 UTC (permalink / raw) To: igt-dev, Latvala, Petri, Peres, Martin Hi Petri/ Martin On 5/6/2019 5:37 PM, Patchwork wrote: > == Series Details == > > Series: igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 > URL : https://patchwork.freedesktop.org/series/60321/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_6049 -> IGTPW_2943 > ==================================================== > > Summary > ------- > > **FAILURE** > petri.latvala@intel.com > Serious unknown changes coming with IGTPW_2943 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_2943, 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/60321/revisions/1/mbox/ > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_2943: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_pm_lpsp@edp-panel-fitter: > - fi-icl-y: NOTRUN -> [SKIP][1] +1 similar issue > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-icl-y/igt@i915_pm_lpsp@edp-panel-fitter.html > - fi-icl-u3: NOTRUN -> [SKIP][2] > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-icl-u3/igt@i915_pm_lpsp@edp-panel-fitter.html Since Gen9 onward platform don't have panel fitters. The subtest has skipped on all platform Gen9 onward. Could you please filter these failures so we can cover other i915_pm_lpsp subtests. It seems due to this failure other i915_pm_lpsp test are not executing. Thanks , Anshuman Gupta. > > > #### Suppressed #### > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@i915_pm_lpsp@edp-panel-fitter: > - {fi-icl-u2}: NOTRUN -> [SKIP][3] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-icl-u2/igt@i915_pm_lpsp@edp-panel-fitter.html > - {fi-cml-u}: NOTRUN -> [SKIP][4] +1 similar issue > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-cml-u/igt@i915_pm_lpsp@edp-panel-fitter.html > - {fi-cml-u2}: NOTRUN -> [SKIP][5] > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-cml-u2/igt@i915_pm_lpsp@edp-panel-fitter.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_2943 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@kms_busy@basic-flip-a: > - fi-kbl-7567u: [PASS][6] -> [SKIP][7] ([fdo#109271] / [fdo#109278]) +2 similar issues > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html > > > #### Possible fixes #### > > * igt@i915_pm_rpm@module-reload: > - fi-skl-6770hq: [FAIL][8] ([fdo#108511]) -> [PASS][9] > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html > > * igt@i915_selftest@live_contexts: > - fi-skl-gvtdvm: [DMESG-FAIL][10] ([fdo#110235]) -> [PASS][11] > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-skl-gvtdvm/igt@i915_selftest@live_contexts.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-skl-gvtdvm/igt@i915_selftest@live_contexts.html > > * igt@i915_selftest@live_evict: > - fi-bsw-kefka: [DMESG-WARN][12] ([fdo#107709]) -> [PASS][13] > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-bsw-kefka/igt@i915_selftest@live_evict.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-bsw-kefka/igt@i915_selftest@live_evict.html > > * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: > - fi-blb-e6850: [INCOMPLETE][14] ([fdo#107718] / [fdo#110581]) -> [PASS][15] > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-blb-e6850/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-blb-e6850/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html > > > #### Warnings #### > > * igt@i915_selftest@live_guc: > - fi-apl-guc: [INCOMPLETE][16] ([fdo#103927] / [fdo#110581]) -> [INCOMPLETE][17] ([fdo#103927]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-apl-guc/igt@i915_selftest@live_guc.html > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-apl-guc/igt@i915_selftest@live_guc.html > > * igt@i915_selftest@live_hangcheck: > - fi-icl-y: [INCOMPLETE][18] ([fdo#107713] / [fdo#108569] / [fdo#110581]) -> [INCOMPLETE][19] ([fdo#107713] / [fdo#108569]) > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-icl-y/igt@i915_selftest@live_hangcheck.html > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-icl-y/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#107709]: https://bugs.freedesktop.org/show_bug.cgi?id=107709 > [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 > [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 > [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511 > [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 > [fdo#110235]: https://bugs.freedesktop.org/show_bug.cgi?id=110235 > [fdo#110581]: https://bugs.freedesktop.org/show_bug.cgi?id=110581 > > > Participating hosts (50 -> 45) > ------------------------------ > > Additional (2): fi-icl-u2 fi-pnv-d510 > Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus > > > Build changes > ------------- > > * IGT: IGT_4972 -> IGTPW_2943 > > CI_DRM_6049: 5e6e5018d74f5ae297db088c45cea19f939fb225 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_2943: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/ > IGT_4972: f052e49a43cc9704ea5f240df15dd9d3dfed68ab @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/ > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 2019-05-08 8:29 ` Gupta, Anshuman @ 2019-05-08 10:39 ` Ville Syrjälä 0 siblings, 0 replies; 9+ messages in thread From: Ville Syrjälä @ 2019-05-08 10:39 UTC (permalink / raw) To: Gupta, Anshuman; +Cc: igt-dev, Latvala, Petri, Peres, Martin On Wed, May 08, 2019 at 01:59:38PM +0530, Gupta, Anshuman wrote: > Hi Petri/ Martin > > On 5/6/2019 5:37 PM, Patchwork wrote: > > == Series Details == > > > > Series: igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 > > URL : https://patchwork.freedesktop.org/series/60321/ > > State : failure > > > > == Summary == > > > > CI Bug Log - changes from CI_DRM_6049 -> IGTPW_2943 > > ==================================================== > > > > Summary > > ------- > > > > **FAILURE** > > petri.latvala@intel.com > > Serious unknown changes coming with IGTPW_2943 absolutely need to be > > verified manually. > > > > If you think the reported changes have nothing to do with the changes > > introduced in IGTPW_2943, 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/60321/revisions/1/mbox/ > > > > Possible new issues > > ------------------- > > > > Here are the unknown changes that may have been introduced in IGTPW_2943: > > > > ### IGT changes ### > > > > #### Possible regressions #### > > > > * igt@i915_pm_lpsp@edp-panel-fitter: > > - fi-icl-y: NOTRUN -> [SKIP][1] +1 similar issue > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-icl-y/igt@i915_pm_lpsp@edp-panel-fitter.html > > - fi-icl-u3: NOTRUN -> [SKIP][2] > > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-icl-u3/igt@i915_pm_lpsp@edp-panel-fitter.html > Since Gen9 onward platform don't have panel fitters. The subtest has > skipped on all platform Gen9 onward. Could you please filter these > failures so we can cover other i915_pm_lpsp subtests. The panel fitter was just renamed to pipe scaler. No practical difference whatsoever. > It seems due to this failure other i915_pm_lpsp test are not executing. > > Thanks , > Anshuman Gupta. > > > > > > #### Suppressed #### > > > > The following results come from untrusted machines, tests, or statuses. > > They do not affect the overall result. > > > > * igt@i915_pm_lpsp@edp-panel-fitter: > > - {fi-icl-u2}: NOTRUN -> [SKIP][3] > > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-icl-u2/igt@i915_pm_lpsp@edp-panel-fitter.html > > - {fi-cml-u}: NOTRUN -> [SKIP][4] +1 similar issue > > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-cml-u/igt@i915_pm_lpsp@edp-panel-fitter.html > > - {fi-cml-u2}: NOTRUN -> [SKIP][5] > > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-cml-u2/igt@i915_pm_lpsp@edp-panel-fitter.html > > > > > > Known issues > > ------------ > > > > Here are the changes found in IGTPW_2943 that come from known issues: > > > > ### IGT changes ### > > > > #### Issues hit #### > > > > * igt@kms_busy@basic-flip-a: > > - fi-kbl-7567u: [PASS][6] -> [SKIP][7] ([fdo#109271] / [fdo#109278]) +2 similar issues > > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html > > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html > > > > > > #### Possible fixes #### > > > > * igt@i915_pm_rpm@module-reload: > > - fi-skl-6770hq: [FAIL][8] ([fdo#108511]) -> [PASS][9] > > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html > > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html > > > > * igt@i915_selftest@live_contexts: > > - fi-skl-gvtdvm: [DMESG-FAIL][10] ([fdo#110235]) -> [PASS][11] > > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-skl-gvtdvm/igt@i915_selftest@live_contexts.html > > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-skl-gvtdvm/igt@i915_selftest@live_contexts.html > > > > * igt@i915_selftest@live_evict: > > - fi-bsw-kefka: [DMESG-WARN][12] ([fdo#107709]) -> [PASS][13] > > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-bsw-kefka/igt@i915_selftest@live_evict.html > > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-bsw-kefka/igt@i915_selftest@live_evict.html > > > > * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: > > - fi-blb-e6850: [INCOMPLETE][14] ([fdo#107718] / [fdo#110581]) -> [PASS][15] > > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-blb-e6850/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html > > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-blb-e6850/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html > > > > > > #### Warnings #### > > > > * igt@i915_selftest@live_guc: > > - fi-apl-guc: [INCOMPLETE][16] ([fdo#103927] / [fdo#110581]) -> [INCOMPLETE][17] ([fdo#103927]) > > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-apl-guc/igt@i915_selftest@live_guc.html > > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-apl-guc/igt@i915_selftest@live_guc.html > > > > * igt@i915_selftest@live_hangcheck: > > - fi-icl-y: [INCOMPLETE][18] ([fdo#107713] / [fdo#108569] / [fdo#110581]) -> [INCOMPLETE][19] ([fdo#107713] / [fdo#108569]) > > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6049/fi-icl-y/igt@i915_selftest@live_hangcheck.html > > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/fi-icl-y/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#107709]: https://bugs.freedesktop.org/show_bug.cgi?id=107709 > > [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 > > [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 > > [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511 > > [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 > > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > > [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 > > [fdo#110235]: https://bugs.freedesktop.org/show_bug.cgi?id=110235 > > [fdo#110581]: https://bugs.freedesktop.org/show_bug.cgi?id=110581 > > > > > > Participating hosts (50 -> 45) > > ------------------------------ > > > > Additional (2): fi-icl-u2 fi-pnv-d510 > > Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus > > > > > > Build changes > > ------------- > > > > * IGT: IGT_4972 -> IGTPW_2943 > > > > CI_DRM_6049: 5e6e5018d74f5ae297db088c45cea19f939fb225 @ git://anongit.freedesktop.org/gfx-ci/linux > > IGTPW_2943: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/ > > IGT_4972: f052e49a43cc9704ea5f240df15dd9d3dfed68ab @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > > > == Logs == > > > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2943/ > > > _______________________________________________ > igt-dev mailing list > igt-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/igt-dev -- Ville Syrjälä Intel _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2019-05-08 10:39 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-05-06 11:24 [igt-dev] [PATCH i-g-t v4 0/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 Anshuman Gupta 2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 1/4] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 Anshuman Gupta 2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 2/4] igt/i915/i915_pm_lpsp check lpsp relevance on non edp panel Anshuman Gupta 2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 3/4] igt/i915/i915_pm_lpsp skip edp-panel-fitter test Anshuman Gupta 2019-05-06 13:08 ` Jani Nikula 2019-05-06 11:24 ` [igt-dev] [PATCH i-g-t v4 4/4] DO_NOT_MERGE add i915_pm_lpsp subtests to CI fast feedback list Anshuman Gupta 2019-05-06 12:07 ` [igt-dev] ✗ Fi.CI.BAT: failure for igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 v4 Patchwork 2019-05-08 8:29 ` Gupta, Anshuman 2019-05-08 10:39 ` Ville Syrjälä
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox