* [igt-dev] [PATCH i-g-t 0/2] Enabling PC8+ residency for all GEN9+ platforms
@ 2019-03-06 12:09 Anshuman Gupta
2019-03-06 12:09 ` [Intel-gfx] [PATCH i-g-t 1/2] tests/i915/i915_pm_rpm: Enable PC8+ residency test for ICL Anshuman Gupta
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Anshuman Gupta @ 2019-03-06 12:09 UTC (permalink / raw)
To: intel-gfx, igt-dev; +Cc: anshuman.gupta
This patch series enable PC8+ residency test, earlier these tests
were only enabled for Haswell and Broadwell.
Since Gen9 onwards PC8+ residency does't require display to be turned off,
this patch series tests PC8 residency with all screens on.
Tested on Gen9, unable to test on ICL, because silicons at local BA setup
are not entering to PC2 itself.
Planning a separate series for a subtest to validate pc8 with multiple pipes
and all planes enabled to create maximum memory bandwidth scenario.
Anshuman Gupta (2):
tests/i915/i915_pm_rpm: Enable PC8+ residency test for ICL
tests/i915/i915_pm_rpm: modeset-pc8-residency-stress
tests/i915/i915_pm_rpm.c | 77 +++++++++++++++++++++++++++++++++++++++++++-----
1 file changed, 69 insertions(+), 8 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] 5+ messages in thread* [Intel-gfx] [PATCH i-g-t 1/2] tests/i915/i915_pm_rpm: Enable PC8+ residency test for ICL 2019-03-06 12:09 [igt-dev] [PATCH i-g-t 0/2] Enabling PC8+ residency for all GEN9+ platforms Anshuman Gupta @ 2019-03-06 12:09 ` Anshuman Gupta 2019-03-06 12:09 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/i915_pm_rpm: modeset-pc8-residency-stress Anshuman Gupta ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Anshuman Gupta @ 2019-03-06 12:09 UTC (permalink / raw) To: intel-gfx, igt-dev Enabled has_pc8 global for ICL and Gen9. Added PC8+ residency test for display enabled case as well. Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/i915/i915_pm_rpm.c | 75 +++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 68 insertions(+), 7 deletions(-) diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c index be296f5..af7a5d0 100644 --- a/tests/i915/i915_pm_rpm.c +++ b/tests/i915/i915_pm_rpm.c @@ -90,7 +90,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, connected_screens; struct mode_set_data ms_data; /* Stuff used when creating FBs and mode setting. */ @@ -98,8 +98,8 @@ struct mode_set_data { drmModeResPtr res; drmModeConnectorPtr connectors[MAX_CONNECTORS]; drmModePropertyBlobPtr edids[MAX_CONNECTORS]; - uint32_t devid; + bool pc8_needs_screen_off; }; /* Stuff we query at different times so we can compare. */ @@ -121,6 +121,7 @@ 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; @@ -297,6 +298,39 @@ static bool init_modeset_params_for_type(struct mode_set_data *data, return true; } +static bool init_modeset_params_for_all_screen(struct mode_set_data *data) +{ + drmModeConnectorPtr connector = NULL; + drmModeModeInfoPtr mode = NULL; + int screen = 0; + + if (!data->res) + return false; + + for (int i = 0; i < data->res->count_connectors; i++) { + drmModeConnectorPtr c = data->connectors[i]; + + if (c->connection == DRM_MODE_CONNECTED && c->count_modes) { + screens_mode_params[screen] = + malloc(sizeof(struct modeset_params)); + connector = c; + mode = &c->modes[0]; + igt_create_pattern_fb(drm_fd, mode->hdisplay, mode->vdisplay, + DRM_FORMAT_XRGB8888, LOCAL_DRM_FORMAT_MOD_NONE, + &screens_mode_params[screen]->fb); + screens_mode_params[screen]->crtc_id = + kmstest_find_crtc_for_connector(drm_fd, data->res, connector, 0); + screens_mode_params[screen]->connector_id = connector->connector_id; + screens_mode_params[screen]->mode = mode; + screen++; + } + } + + if (!connector) + return false; + + return true; +} static void init_modeset_cached_params(struct mode_set_data *data) { bool lpsp, non_lpsp; @@ -305,6 +339,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); + connected_screens = init_modeset_params_for_all_screen(data); if (lpsp) default_mode_params = &lpsp_mode_params; @@ -353,6 +388,23 @@ static bool enable_one_screen_with_type(struct mode_set_data *data, return set_mode_for_params(params); } +static void enable_all_screens(struct mode_set_data *data) +{ + struct modeset_params *params = NULL; + + /* SKIP if there are no connected screens. */ + igt_require(connected_screens); + + for (int i = 0; i < MAX_CONNECTORS ; i++) { + params = screens_mode_params[i]; + + if (params) + set_mode_for_params(params); + else + break; + } + return; +} static void enable_one_screen(struct mode_set_data *data) { /* SKIP if there are no connected screens. */ @@ -685,8 +737,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)) + ms_data.pc8_needs_screen_off = true; + else if (AT_LEAST_GEN(ms_data.devid, 9)) + ms_data.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. */ @@ -778,7 +834,6 @@ static void teardown_environment(void) igt_pm_restore_sata_link_power_management(pm_data); free(pm_data); - fini_mode_set_data(&ms_data); close(debugfs); @@ -808,9 +863,15 @@ 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), + if (ms_data.pc8_needs_screen_off) { + enable_one_screen(&ms_data); + igt_assert_f(!pc8_plus_residency_changed(10), "PC8+ residency didn't stop with screen enabled.\n"); + } else { + enable_all_screens(&ms_data); + igt_assert_f(pc8_plus_residency_changed(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.7.4 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/i915/i915_pm_rpm: modeset-pc8-residency-stress 2019-03-06 12:09 [igt-dev] [PATCH i-g-t 0/2] Enabling PC8+ residency for all GEN9+ platforms Anshuman Gupta 2019-03-06 12:09 ` [Intel-gfx] [PATCH i-g-t 1/2] tests/i915/i915_pm_rpm: Enable PC8+ residency test for ICL Anshuman Gupta @ 2019-03-06 12:09 ` Anshuman Gupta 2019-03-06 13:13 ` [igt-dev] ✓ Fi.CI.BAT: success for Enabling PC8+ residency for all GEN9+ platforms Patchwork 2019-03-06 17:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Anshuman Gupta @ 2019-03-06 12:09 UTC (permalink / raw) To: intel-gfx, igt-dev; +Cc: anshuman.gupta Introduced pc8_needs_screen_off flag in order to differentiate between HASWELL/BROADWEEL and AT_LEAST_GEN9. GEN9 onwards PC8+ residency does't require display to be turned on. Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/i915/i915_pm_rpm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c index af7a5d0..cd891db 100644 --- a/tests/i915/i915_pm_rpm.c +++ b/tests/i915/i915_pm_rpm.c @@ -902,7 +902,7 @@ static void modeset_subtest(enum screen_type type, int rounds, int wait_flags) igt_require(enable_one_screen_with_type(&ms_data, type)); if (wait_flags & WAIT_STATUS) igt_assert(wait_for_active()); - if (wait_flags & WAIT_PC8_RES) + if (wait_flags & WAIT_PC8_RES && ms_data.pc8_needs_screen_off) igt_assert(!pc8_plus_residency_changed(5)); if (wait_flags & WAIT_EXTRA) sleep(5); -- 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] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Enabling PC8+ residency for all GEN9+ platforms 2019-03-06 12:09 [igt-dev] [PATCH i-g-t 0/2] Enabling PC8+ residency for all GEN9+ platforms Anshuman Gupta 2019-03-06 12:09 ` [Intel-gfx] [PATCH i-g-t 1/2] tests/i915/i915_pm_rpm: Enable PC8+ residency test for ICL Anshuman Gupta 2019-03-06 12:09 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/i915_pm_rpm: modeset-pc8-residency-stress Anshuman Gupta @ 2019-03-06 13:13 ` Patchwork 2019-03-06 17:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2019-03-06 13:13 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev == Series Details == Series: Enabling PC8+ residency for all GEN9+ platforms URL : https://patchwork.freedesktop.org/series/57640/ State : success == Summary == CI Bug Log - changes from IGT_4874 -> IGTPW_2558 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/57640/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_2558 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3: - fi-blb-e6850: PASS -> INCOMPLETE [fdo#107718] * igt@i915_pm_rpm@basic-pci-d3-state: - fi-byt-j1900: PASS -> SKIP [fdo#109271] * igt@i915_pm_rpm@basic-rte: - fi-byt-j1900: PASS -> FAIL [fdo#108800] * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - fi-byt-clapper: PASS -> FAIL [fdo#103191] / [fdo#107362] #### Possible fixes #### * igt@i915_selftest@live_execlists: - fi-apl-guc: INCOMPLETE [fdo#103927] / [fdo#109720] -> PASS [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#107362]: https://bugs.freedesktop.org/show_bug.cgi?id=107362 [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#108800]: https://bugs.freedesktop.org/show_bug.cgi?id=108800 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109720]: https://bugs.freedesktop.org/show_bug.cgi?id=109720 Participating hosts (45 -> 41) ------------------------------ Missing (4): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-hsw-4200u Build changes ------------- * IGT: IGT_4874 -> IGTPW_2558 CI_DRM_5711: 221f1aafa4d61ada2b5693b88454d75b825bee0c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2558: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2558/ IGT_4874: a382aeec489a187591677644cc3b98e34322b474 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2558/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Enabling PC8+ residency for all GEN9+ platforms 2019-03-06 12:09 [igt-dev] [PATCH i-g-t 0/2] Enabling PC8+ residency for all GEN9+ platforms Anshuman Gupta ` (2 preceding siblings ...) 2019-03-06 13:13 ` [igt-dev] ✓ Fi.CI.BAT: success for Enabling PC8+ residency for all GEN9+ platforms Patchwork @ 2019-03-06 17:44 ` Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2019-03-06 17:44 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev == Series Details == Series: Enabling PC8+ residency for all GEN9+ platforms URL : https://patchwork.freedesktop.org/series/57640/ State : success == Summary == CI Bug Log - changes from IGT_4874_full -> IGTPW_2558_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_2558_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_2558_full, 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/1/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_2558_full: ### IGT changes ### #### Warnings #### * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-kbl: SKIP [fdo#109271] -> FAIL +2 Known issues ------------ Here are the changes found in IGTPW_2558_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-kbl: PASS -> SKIP [fdo#109271] * igt@kms_atomic_transition@1x-modeset-transitions-nonblocking: - shard-apl: PASS -> FAIL [fdo#109660] - shard-kbl: PASS -> FAIL [fdo#109660] * igt@kms_atomic_transition@6x-modeset-transitions-nonblocking-fencing: - shard-glk: NOTRUN -> SKIP [fdo#109271] / [fdo#109278] * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-apl: PASS -> INCOMPLETE [fdo#103927] * igt@kms_available_modes_crc@available_mode_test_crc: - shard-glk: NOTRUN -> FAIL [fdo#106641] * igt@kms_busy@basic-flip-e: - shard-snb: NOTRUN -> SKIP [fdo#109271] / [fdo#109278] +2 * igt@kms_busy@extended-modeset-hang-newfb-render-a: - shard-hsw: NOTRUN -> DMESG-WARN [fdo#107956] * igt@kms_busy@extended-modeset-hang-newfb-render-c: - shard-hsw: PASS -> DMESG-WARN [fdo#107956] +1 - shard-kbl: PASS -> DMESG-WARN [fdo#107956] +1 * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-a: - shard-snb: PASS -> DMESG-WARN [fdo#107956] * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-e: - shard-hsw: NOTRUN -> SKIP [fdo#109271] / [fdo#109278] +5 * igt@kms_ccs@pipe-a-ccs-on-another-bo: - shard-snb: NOTRUN -> SKIP [fdo#109271] +37 * igt@kms_color@pipe-c-legacy-gamma: - shard-apl: PASS -> FAIL [fdo#104782] * igt@kms_cursor_crc@cursor-64x21-sliding: - shard-apl: PASS -> FAIL [fdo#103232] +2 * igt@kms_cursor_crc@cursor-64x64-sliding: - shard-kbl: PASS -> FAIL [fdo#103232] * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-apl: PASS -> FAIL [fdo#103167] +1 * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-glk: NOTRUN -> FAIL [fdo#103167] * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-glk: PASS -> FAIL [fdo#103167] +6 * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-glk: NOTRUN -> SKIP [fdo#109271] +25 * igt@kms_plane_multiple@atomic-pipe-a-tiling-y: - shard-glk: NOTRUN -> FAIL [fdo#103166] * igt@kms_plane_multiple@atomic-pipe-b-tiling-yf: - shard-kbl: PASS -> FAIL [fdo#103166] +2 * igt@kms_plane_multiple@atomic-pipe-c-tiling-none: - shard-glk: PASS -> FAIL [fdo#103166] +4 * igt@kms_plane_multiple@atomic-pipe-c-tiling-yf: - shard-apl: PASS -> FAIL [fdo#103166] +5 * igt@kms_rotation_crc@multiplane-rotation: - shard-kbl: PASS -> INCOMPLETE [fdo#103665] * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-snb: PASS -> INCOMPLETE [fdo#105411] * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-kbl: PASS -> FAIL [fdo#104894] * igt@perf_pmu@busy-start-vcs1: - shard-apl: NOTRUN -> SKIP [fdo#109271] * igt@perf_pmu@semaphore-wait-idle-vcs0: - shard-hsw: NOTRUN -> SKIP [fdo#109271] +55 #### Possible fixes #### * igt@kms_busy@extended-modeset-hang-newfb-render-a: - shard-snb: DMESG-WARN [fdo#107956] -> PASS * igt@kms_busy@extended-modeset-hang-newfb-render-b: - shard-hsw: DMESG-WARN [fdo#107956] -> PASS - shard-kbl: DMESG-WARN [fdo#107956] -> PASS +1 * igt@kms_cursor_crc@cursor-256x256-onscreen: - shard-kbl: FAIL [fdo#103232] -> PASS +1 * igt@kms_cursor_crc@cursor-256x85-random: - shard-apl: FAIL [fdo#103232] -> PASS +4 * igt@kms_cursor_crc@cursor-alpha-opaque: - shard-apl: FAIL [fdo#109350] -> PASS - shard-glk: FAIL [fdo#109350] -> PASS * igt@kms_cursor_crc@cursor-size-change: - shard-glk: FAIL [fdo#103232] -> PASS * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-glk: INCOMPLETE [fdo#103359] / [k.org#198133] -> PASS * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-apl: FAIL [fdo#103167] -> PASS +5 * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-glk: FAIL [fdo#103167] -> PASS +7 * igt@kms_plane@plane-position-covered-pipe-a-planes: - shard-glk: FAIL [fdo#103166] -> PASS +3 * igt@kms_plane@plane-position-covered-pipe-b-planes: - shard-kbl: FAIL [fdo#103166] -> PASS * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb: - shard-glk: FAIL [fdo#108145] -> PASS * igt@kms_plane_multiple@atomic-pipe-b-tiling-x: - shard-apl: FAIL [fdo#103166] -> PASS +2 * igt@kms_setmode@basic: - shard-kbl: FAIL [fdo#99912] -> PASS * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm: - shard-apl: FAIL [fdo#104894] -> PASS +1 * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: FAIL [fdo#104894] -> PASS * igt@perf_pmu@rc6: - shard-kbl: SKIP [fdo#109271] -> PASS {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782 [fdo#104894]: https://bugs.freedesktop.org/show_bug.cgi?id=104894 [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 [fdo#106641]: https://bugs.freedesktop.org/show_bug.cgi?id=106641 [fdo#107956]: https://bugs.freedesktop.org/show_bug.cgi?id=107956 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109350]: https://bugs.freedesktop.org/show_bug.cgi?id=109350 [fdo#109660]: https://bugs.freedesktop.org/show_bug.cgi?id=109660 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (6 -> 5) ------------------------------ Missing (1): shard-skl Build changes ------------- * IGT: IGT_4874 -> IGTPW_2558 CI_DRM_5711: 221f1aafa4d61ada2b5693b88454d75b825bee0c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2558: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2558/ IGT_4874: a382aeec489a187591677644cc3b98e34322b474 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2558/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-03-06 17:44 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-03-06 12:09 [igt-dev] [PATCH i-g-t 0/2] Enabling PC8+ residency for all GEN9+ platforms Anshuman Gupta 2019-03-06 12:09 ` [Intel-gfx] [PATCH i-g-t 1/2] tests/i915/i915_pm_rpm: Enable PC8+ residency test for ICL Anshuman Gupta 2019-03-06 12:09 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/i915_pm_rpm: modeset-pc8-residency-stress Anshuman Gupta 2019-03-06 13:13 ` [igt-dev] ✓ Fi.CI.BAT: success for Enabling PC8+ residency for all GEN9+ platforms Patchwork 2019-03-06 17:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox