* [igt-dev] [PATCH RFC i-g-t] [RFC] tests/i915/i915_pm_dc: Add DC6 test for mtl
@ 2023-01-17 8:50 Mohammed Thasleem
2023-01-17 14:06 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Mohammed Thasleem @ 2023-01-17 8:50 UTC (permalink / raw)
To: igt-dev
The flow for DC6 validation has changed for MTL.
DC6 state achieved based on PKGC10 entry.
This test validates PKGC10 entry and confirm DC6 achieved.
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
---
tests/i915/i915_pm_dc.c | 39 ++++++++++++++++++++++++++++++++++++++-
1 file changed, 38 insertions(+), 1 deletion(-)
diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c
index ba49d014..c30269a6 100644
--- a/tests/i915/i915_pm_dc.c
+++ b/tests/i915/i915_pm_dc.c
@@ -45,6 +45,7 @@
#define PWR_DOMAIN_INFO "i915_power_domain_info"
#define RPM_STATUS "i915_runtime_pm_status"
#define KMS_HELPER "/sys/module/drm_kms_helper/parameters/"
+#define PACKAGE_STATE_PATH "/sys/kernel/debug/pmc_core/"
#define KMS_POLL_DISABLE 0
#define DC9_RESETS_DC_COUNTERS(devid) (!(IS_DG1(devid) || IS_DG2(devid)))
@@ -60,6 +61,8 @@ typedef struct {
int drm_fd;
int msr_fd;
int debugfs_fd;
+ int pmc_fd;
+ uint32_t ver;
uint32_t devid;
char *debugfs_dump;
igt_display_t display;
@@ -485,6 +488,36 @@ static void test_dc9_dpms(data_t *data)
setup_dc9_dpms(data, dc_target);
}
+static unsigned int read_pk10_value(int pmc_fd)
+{
+ char buf[4096];
+ char *str;
+
+ igt_require((pmc_fd = open(PACKAGE_STATE_PATH, O_RDONLY)) >= 0);
+
+ igt_debugfs_simple_read(pmc_fd, "package_cstate_show",
+ buf, sizeof(buf));
+ igt_skip_on_f(!strstr(buf, "Package C10"),
+ "PK10 will be not supported.\n");
+ str = strstr(buf, "Package C10");
+ igt_assert_f(str, "PK10 value not available\n");
+
+ return get_dc_counter(str);
+}
+
+static void test_pk10_dpms(data_t *data)
+{
+ unsigned int timeout_sec = 30;
+ unsigned int prev_value = 0, cur_value = 0;
+
+ prev_value = read_pk10_value(data->pmc_fd);
+ dpms_off(data);
+ igt_wait((cur_value = read_pk10_value(data->pmc_fd)),
+ timeout_sec * 1000, 100);
+ igt_assert_f(cur_value > prev_value, "PK10 is not achieived.\n");
+ dpms_on(data);
+}
+
static void kms_poll_state_restore(int sig)
{
int sysfs_fd;
@@ -506,6 +539,7 @@ igt_main
igt_require(data.debugfs_fd != -1);
kmstest_set_vt_graphics_mode();
data.devid = intel_get_drm_devid(data.drm_fd);
+ data.ver = intel_display_ver(data.devid);
igt_pm_enable_sata_link_power_management();
igt_require(igt_setup_runtime_pm(data.drm_fd));
igt_require(igt_pm_dmc_loaded(data.debugfs_fd));
@@ -557,7 +591,10 @@ igt_main
igt_subtest("dc6-dpms") {
igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
"PC8+ residencies not supported\n");
- test_dc_state_dpms(&data, CHECK_DC6);
+ if (data.ver == 14)
+ test_pk10_dpms(&data);
+ else
+ test_dc_state_dpms(&data, CHECK_DC6);
}
igt_describe("This test validates display engine entry to DC9 state");
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/i915_pm_dc: Add DC6 test for mtl 2023-01-17 8:50 [igt-dev] [PATCH RFC i-g-t] [RFC] tests/i915/i915_pm_dc: Add DC6 test for mtl Mohammed Thasleem @ 2023-01-17 14:06 ` Patchwork 2023-01-17 18:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2023-01-19 12:08 ` [igt-dev] [PATCH RFC i-g-t] [RFC] " Govindapillai, Vinod 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-01-17 14:06 UTC (permalink / raw) To: Mohammed Thasleem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9810 bytes --] == Series Details == Series: tests/i915/i915_pm_dc: Add DC6 test for mtl URL : https://patchwork.freedesktop.org/series/112918/ State : success == Summary == CI Bug Log - changes from CI_DRM_12590 -> IGTPW_8348 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/index.html Participating hosts (42 -> 43) ------------------------------ Additional (2): fi-bsw-kefka fi-rkl-11600 Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8348: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@workarounds: - {bat-rpls-1}: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/bat-rpls-1/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/bat-rpls-1/igt@i915_selftest@live@workarounds.html Known issues ------------ Here are the changes found in IGTPW_8348 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_auth@basic-auth: - fi-bsw-n3050: [PASS][3] -> [DMESG-WARN][4] ([i915#1982]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/fi-bsw-n3050/igt@core_auth@basic-auth.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-bsw-n3050/igt@core_auth@basic-auth.html * igt@debugfs_test@basic-hwmon: - fi-rkl-11600: NOTRUN -> [SKIP][5] ([i915#7456]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-rkl-11600/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - fi-rkl-11600: NOTRUN -> [SKIP][6] ([i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-rkl-11600: NOTRUN -> [SKIP][7] ([i915#4613]) +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-rkl-11600/igt@gem_lmem_swapping@basic.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][8] ([i915#3282]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-rkl-11600/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - fi-rkl-11600: NOTRUN -> [SKIP][9] ([i915#7561]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-rkl-11600/igt@i915_pm_backlight@basic-brightness.html * igt@i915_selftest@live@workarounds: - bat-dg1-5: [PASS][10] -> [DMESG-FAIL][11] ([i915#4983]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/bat-dg1-5/igt@i915_selftest@live@workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/bat-dg1-5/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: NOTRUN -> [INCOMPLETE][12] ([i915#4817]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-dg1-6: NOTRUN -> [SKIP][13] ([i915#7828]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/bat-dg1-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-fast: - fi-rkl-11600: NOTRUN -> [SKIP][14] ([i915#7828]) +7 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-rkl-11600/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor: - fi-rkl-11600: NOTRUN -> [SKIP][15] ([i915#4103]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size: - fi-bsw-n3050: [PASS][16] -> [FAIL][17] ([i915#6298]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html * igt@kms_force_connector_basic@force-load-detect: - fi-rkl-11600: NOTRUN -> [SKIP][18] ([fdo#109285] / [i915#4098]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@primary_page_flip: - fi-rkl-11600: NOTRUN -> [SKIP][19] ([i915#1072]) +3 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-rkl-11600/igt@kms_psr@primary_page_flip.html * igt@kms_setmode@basic-clone-single-crtc: - fi-rkl-11600: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#4098]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - fi-bsw-kefka: NOTRUN -> [SKIP][21] ([fdo#109271]) +26 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-bsw-kefka/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][22] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-rkl-11600/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-userptr: - fi-rkl-11600: NOTRUN -> [SKIP][23] ([fdo#109295] / [i915#3301] / [i915#3708]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-rkl-11600/igt@prime_vgem@basic-userptr.html * igt@runner@aborted: - bat-dg1-5: NOTRUN -> [FAIL][24] ([i915#4312]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/bat-dg1-5/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_gttfill@basic: - fi-pnv-d510: [FAIL][25] ([i915#7229]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/fi-pnv-d510/igt@gem_exec_gttfill@basic.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/fi-pnv-d510/igt@gem_exec_gttfill@basic.html * igt@i915_selftest@live@gt_pm: - {bat-rpls-2}: [DMESG-FAIL][27] ([i915#4258]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/bat-rpls-2/igt@i915_selftest@live@gt_pm.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/bat-rpls-2/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - bat-dg1-6: [INCOMPLETE][29] ([i915#4983]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/bat-dg1-6/igt@i915_selftest@live@hangcheck.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/bat-dg1-6/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@reset: - {bat-rpls-1}: [DMESG-FAIL][31] ([i915#4983]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/bat-rpls-1/igt@i915_selftest@live@reset.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/bat-rpls-1/igt@i915_selftest@live@reset.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229 [i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7625]: https://gitlab.freedesktop.org/drm/intel/issues/7625 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7121 -> IGTPW_8348 CI-20190529: 20190529 CI_DRM_12590: aa9844e5dcac30f3b7c09fa0218516692698f0e2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8348: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/index.html IGT_7121: aa16e81259f59734230d441905b9d0f605e4a4b5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/index.html [-- Attachment #2: Type: text/html, Size: 11148 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/i915/i915_pm_dc: Add DC6 test for mtl 2023-01-17 8:50 [igt-dev] [PATCH RFC i-g-t] [RFC] tests/i915/i915_pm_dc: Add DC6 test for mtl Mohammed Thasleem 2023-01-17 14:06 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-01-17 18:27 ` Patchwork 2023-01-19 12:08 ` [igt-dev] [PATCH RFC i-g-t] [RFC] " Govindapillai, Vinod 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-01-17 18:27 UTC (permalink / raw) To: Mohammed Thasleem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 23317 bytes --] == Series Details == Series: tests/i915/i915_pm_dc: Add DC6 test for mtl URL : https://patchwork.freedesktop.org/series/112918/ State : success == Summary == CI Bug Log - changes from CI_DRM_12590_full -> IGTPW_8348_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/index.html Participating hosts (13 -> 11) ------------------------------ Additional (1): shard-rkl0 Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8348_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_create@create-clear@smem0: - {shard-rkl}: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-rkl-4/igt@gem_create@create-clear@smem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-rkl-2/igt@gem_create@create-clear@smem0.html * igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-a-hdmi-a-4: - {shard-dg1}: [PASS][3] -> [FAIL][4] +2 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-a-hdmi-a-4.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-a-hdmi-a-4.html New tests --------- New tests have been introduced between CI_DRM_12590_full and IGTPW_8348_full: ### New IGT tests (2) ### * igt@gem_exec_fair@basic-none@vcs1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@gem_exec_fair@basic-pace@vcs1: - Statuses : 1 fail(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8348_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-none@vcs1 (NEW): - {shard-tglu}: NOTRUN -> [FAIL][5] ([i915#2842]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-tglu-3/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][6] -> [FAIL][7] ([i915#2842]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1 (NEW): - {shard-tglu-9}: NOTRUN -> [FAIL][8] ([i915#2842]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-tglu-9/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][9] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-glk9/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#4613]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@verify: - shard-apl: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#4613]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-apl1/igt@gem_lmem_swapping@verify.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#3886]) +1 similar issue [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-apl2/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#3886]) +3 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-glk7/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-glk: NOTRUN -> [SKIP][14] ([fdo#109271]) +48 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-glk8/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-apl: [PASS][15] -> [FAIL][16] ([i915#2346]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-glk: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#7205]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-glk8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [FAIL][18] ([i915#4573]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-glk4/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-b-hdmi-a-2.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-apl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#658]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-apl1/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#658]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-glk3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr@psr2_sprite_plane_onoff: - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271]) +54 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-apl1/igt@kms_psr@psr2_sprite_plane_onoff.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#2437]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-glk3/igt@kms_writeback@writeback-fb-id.html * igt@sysfs_clients@sema-50: - shard-apl: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#2994]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-apl1/igt@sysfs_clients@sema-50.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - {shard-rkl}: [FAIL][24] ([i915#7742]) -> [PASS][25] +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html * igt@fbdev@nullptr: - {shard-rkl}: [SKIP][26] ([i915#2582]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-rkl-4/igt@fbdev@nullptr.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-rkl-4/igt@fbdev@nullptr.html * igt@gem_exec_endless@dispatch@bcs0: - {shard-rkl}: [SKIP][28] ([i915#6247]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-rkl-4/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fair@basic-deadline: - {shard-rkl}: [FAIL][30] ([i915#2846]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][32] ([i915#2842]) -> [PASS][33] +3 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-glk1/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][34] ([i915#2842]) -> [PASS][35] +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - {shard-rkl}: [FAIL][36] ([i915#2842]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_reloc@basic-cpu-gtt: - {shard-rkl}: [SKIP][38] ([i915#3281]) -> [PASS][39] +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-apl: [INCOMPLETE][40] ([i915#7708]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-apl2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-apl6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gen9_exec_parse@bb-start-far: - {shard-rkl}: [SKIP][42] ([i915#2527]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][44] ([fdo#109271]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-apl7/igt@i915_pm_dc@dc9-dpms.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-apl6/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - {shard-dg1}: [FAIL][46] ([i915#3591]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_suspend@basic-s3-without-i915: - {shard-rkl}: [FAIL][48] ([fdo#103375]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs: - {shard-tglu}: [SKIP][50] ([i915#1845] / [i915#7651]) -> [PASS][51] +1 similar issue [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-tglu-6/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-tglu-1/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - {shard-rkl}: [SKIP][52] ([i915#1849] / [i915#4098]) -> [PASS][53] +6 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_universal_plane@cursor-fb-leak-pipe-d: - {shard-tglu}: [SKIP][54] ([fdo#109274]) -> [PASS][55] [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html * igt@kms_vblank@pipe-b-wait-busy-hang: - {shard-rkl}: [SKIP][56] ([i915#1845] / [i915#4098]) -> [PASS][57] +6 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-rkl-4/igt@kms_vblank@pipe-b-wait-busy-hang.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-rkl-6/igt@kms_vblank@pipe-b-wait-busy-hang.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm: - {shard-tglu}: [SKIP][58] ([i915#7651]) -> [PASS][59] +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-tglu-6/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-tglu-3/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html * igt@perf@gen12-mi-rpc: - {shard-rkl}: [SKIP][60] ([fdo#109289]) -> [PASS][61] [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12590/shard-rkl-5/igt@perf@gen12-mi-rpc.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/shard-rkl-4/igt@perf@gen12-mi-rpc.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7205]: https://gitlab.freedesktop.org/drm/intel/issues/7205 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7708]: https://gitlab.freedesktop.org/drm/intel/issues/7708 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7121 -> IGTPW_8348 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12590: aa9844e5dcac30f3b7c09fa0218516692698f0e2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8348: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/index.html IGT_7121: aa16e81259f59734230d441905b9d0f605e4a4b5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8348/index.html [-- Attachment #2: Type: text/html, Size: 18892 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH RFC i-g-t] [RFC] tests/i915/i915_pm_dc: Add DC6 test for mtl 2023-01-17 8:50 [igt-dev] [PATCH RFC i-g-t] [RFC] tests/i915/i915_pm_dc: Add DC6 test for mtl Mohammed Thasleem 2023-01-17 14:06 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-01-17 18:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2023-01-19 12:08 ` Govindapillai, Vinod 2 siblings, 0 replies; 4+ messages in thread From: Govindapillai, Vinod @ 2023-01-19 12:08 UTC (permalink / raw) To: Thasleem, Mohammed, igt-dev@lists.freedesktop.org On Tue, 2023-01-17 at 14:20 +0530, Mohammed Thasleem wrote: > The flow for DC6 validation has changed for MTL. > DC6 state achieved based on PKGC10 entry. > This test validates PKGC10 entry and confirm DC6 achieved. > > Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> > --- > tests/i915/i915_pm_dc.c | 39 ++++++++++++++++++++++++++++++++++++++- > 1 file changed, 38 insertions(+), 1 deletion(-) > > diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c > index ba49d014..c30269a6 100644 > --- a/tests/i915/i915_pm_dc.c > +++ b/tests/i915/i915_pm_dc.c > @@ -45,6 +45,7 @@ > #define PWR_DOMAIN_INFO "i915_power_domain_info" > #define RPM_STATUS "i915_runtime_pm_status" > #define KMS_HELPER "/sys/module/drm_kms_helper/parameters/" > +#define PACKAGE_STATE_PATH "/sys/kernel/debug/pmc_core/" > #define KMS_POLL_DISABLE 0 > #define DC9_RESETS_DC_COUNTERS(devid) (!(IS_DG1(devid) || IS_DG2(devid))) > > @@ -60,6 +61,8 @@ typedef struct { > int drm_fd; > int msr_fd; > int debugfs_fd; > + int pmc_fd; > + uint32_t ver; > uint32_t devid; > char *debugfs_dump; > igt_display_t display; > @@ -485,6 +488,36 @@ static void test_dc9_dpms(data_t *data) > setup_dc9_dpms(data, dc_target); > } > > +static unsigned int read_pk10_value(int pmc_fd) > +{ > + char buf[4096]; > + char *str; > + > + igt_require((pmc_fd = open(PACKAGE_STATE_PATH, O_RDONLY)) >= 0); > + > + igt_debugfs_simple_read(pmc_fd, "package_cstate_show", > + buf, sizeof(buf)); > + igt_skip_on_f(!strstr(buf, "Package C10"), > + "PK10 will be not supported.\n"); > + str = strstr(buf, "Package C10"); > + igt_assert_f(str, "PK10 value not available\n"); > + > + return get_dc_counter(str); > +} > + > +static void test_pk10_dpms(data_t *data) > +{ > + unsigned int timeout_sec = 30; > + unsigned int prev_value = 0, cur_value = 0; > + > + prev_value = read_pk10_value(data->pmc_fd); > + dpms_off(data); > + igt_wait((cur_value = read_pk10_value(data->pmc_fd)), > + timeout_sec * 1000, 100); > + igt_assert_f(cur_value > prev_value, "PK10 is not achieived.\n"); > + dpms_on(data); > +} > + > static void kms_poll_state_restore(int sig) > { > int sysfs_fd; > @@ -506,6 +539,7 @@ igt_main > igt_require(data.debugfs_fd != -1); > kmstest_set_vt_graphics_mode(); > data.devid = intel_get_drm_devid(data.drm_fd); Hi Thasleem, > + data.ver = intel_display_ver(data.devid); As this is used only below to check the display version, wonder if you need to store to data! > igt_pm_enable_sata_link_power_management(); > igt_require(igt_setup_runtime_pm(data.drm_fd)); > igt_require(igt_pm_dmc_loaded(data.debugfs_fd)); > @@ -557,7 +591,10 @@ igt_main > igt_subtest("dc6-dpms") { > igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd), > "PC8+ residencies not supported\n"); > - test_dc_state_dpms(&data, CHECK_DC6); > + if (data.ver == 14) And is this change related to dc6 v PKGC10, specific to MTL or all display_versions >= 14? BR Vinod > + test_pk10_dpms(&data); > + else > + test_dc_state_dpms(&data, CHECK_DC6); > } > > igt_describe("This test validates display engine entry to DC9 state"); ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-01-19 12:08 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-01-17 8:50 [igt-dev] [PATCH RFC i-g-t] [RFC] tests/i915/i915_pm_dc: Add DC6 test for mtl Mohammed Thasleem 2023-01-17 14:06 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-01-17 18:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2023-01-19 12:08 ` [igt-dev] [PATCH RFC i-g-t] [RFC] " Govindapillai, Vinod
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox