* [igt-dev] [PATCH i-g-t] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11.
@ 2019-03-15 10:58 Anshuman Gupta
2019-03-18 8:33 ` [igt-dev] ✓ Fi.CI.BAT: success for igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11. (rev2) Patchwork
2019-03-18 10:20 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
0 siblings, 2 replies; 4+ messages in thread
From: Anshuman Gupta @ 2019-03-15 10:58 UTC (permalink / raw)
To: intel-gfx, igt-dev
Enabling pm_lpsp igt tests for Gen11 as well as for all platforms
at least gen9, earlier these test were enabled only haswell and broadwell
platforms.
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
tests/i915/i915_pm_lpsp.c | 29 +++++++++++++++++++++++++++--
1 file changed, 27 insertions(+), 2 deletions(-)
diff --git a/tests/i915/i915_pm_lpsp.c b/tests/i915/i915_pm_lpsp.c
index b319dbe..f7037ce 100644
--- a/tests/i915/i915_pm_lpsp.c
+++ b/tests/i915/i915_pm_lpsp.c
@@ -30,18 +30,42 @@
#include <fcntl.h>
#include <unistd.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))
+
+int no_lpsp_pw_idx;
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 get_no_lpsp_pw_idx(uint32_t devid)
+{
+ 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
+ return false;
+
+ return true;
}
static bool lpsp_is_enabled(int drm_fd)
{
uint32_t val;
+ uint32_t mask = HSW_PWR_WELL_CTL_REQ(no_lpsp_pw_idx) |
+ HSW_PWR_WELL_CTL_STATE(no_lpsp_pw_idx);
val = INREG(HSW_PWR_WELL_CTL2);
- return !(val & HSW_PWR_WELL_STATE_ENABLED);
+ return !((val & mask) == mask);
}
/* The LPSP mode is all about an enabled pipe, but we expect to also be in the
@@ -212,6 +236,7 @@ igt_main
intel_register_access_init(intel_get_pci_device(), 0, drm_fd);
+ igt_require(get_no_lpsp_pw_idx(devid));
kmstest_set_vt_graphics_mode();
}
--
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] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11. (rev2)
2019-03-15 10:58 [igt-dev] [PATCH i-g-t] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 Anshuman Gupta
@ 2019-03-18 8:33 ` Patchwork
[not found] ` <b3563c2f-a8b5-70d0-7a4b-4658d2947fb6@intel.com>
2019-03-18 10:20 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
1 sibling, 1 reply; 4+ messages in thread
From: Patchwork @ 2019-03-18 8:33 UTC (permalink / raw)
To: Anshuman Gupta; +Cc: igt-dev
== Series Details ==
Series: igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11. (rev2)
URL : https://patchwork.freedesktop.org/series/58051/
State : success
== Summary ==
CI Bug Log - changes from IGT_4888 -> IGTPW_2640
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/58051/revisions/2/mbox/
Known issues
------------
Here are the changes found in IGTPW_2640 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_cs_nop@sync-gfx0:
- fi-kbl-7567u: NOTRUN -> SKIP [fdo#109271] +17
* igt@debugfs_test@read_all_entries:
- fi-kbl-7567u: PASS -> DMESG-WARN [fdo#103558] / [fdo#105602]
* igt@gem_exec_suspend@basic-s3:
- fi-kbl-7567u: PASS -> DMESG-WARN [fdo#103558] / [fdo#105079] / [fdo#105602] +2
* igt@i915_module_load@reload:
- fi-kbl-7567u: PASS -> DMESG-WARN [fdo#105602] / [fdo#108529]
* igt@i915_pm_rpm@module-reload:
- fi-kbl-7567u: NOTRUN -> DMESG-WARN [fdo#108529]
* igt@kms_busy@basic-flip-a:
- fi-kbl-7567u: PASS -> SKIP [fdo#109271] / [fdo#109278] +2
* igt@kms_chamelium@hdmi-edid-read:
- fi-kbl-7567u: PASS -> FAIL [fdo#109569] +1
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7567u: PASS -> FAIL [fdo#109800]
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
- fi-whl-u: PASS -> FAIL [fdo#103375] +3
- fi-byt-clapper: PASS -> FAIL [fdo#103191] / [fdo#107362] +2
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
- fi-kbl-7567u: PASS -> DMESG-FAIL [fdo#105079]
* igt@prime_vgem@basic-fence-flip:
- fi-kbl-7567u: PASS -> SKIP [fdo#109271] +2
#### Possible fixes ####
* igt@kms_pipe_crc_basic@read-crc-pipe-b:
- fi-byt-clapper: FAIL [fdo#107362] -> PASS
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
- fi-byt-clapper: FAIL [fdo#103191] / [fdo#107362] -> PASS +1
* igt@prime_vgem@basic-fence-flip:
- fi-ilk-650: FAIL [fdo#104008] -> PASS
[fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558
[fdo#104008]: https://bugs.freedesktop.org/show_bug.cgi?id=104008
[fdo#105079]: https://bugs.freedesktop.org/show_bug.cgi?id=105079
[fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602
[fdo#107362]: https://bugs.freedesktop.org/show_bug.cgi?id=107362
[fdo#108529]: https://bugs.freedesktop.org/show_bug.cgi?id=108529
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109569]: https://bugs.freedesktop.org/show_bug.cgi?id=109569
[fdo#109800]: https://bugs.freedesktop.org/show_bug.cgi?id=109800
Participating hosts (46 -> 36)
------------------------------
Missing (10): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-j1900 fi-byt-squawks fi-bsw-cyan fi-skl-6260u fi-apl-guc fi-gdg-551 fi-bdw-samus
Build changes
-------------
* IGT: IGT_4888 -> IGTPW_2640
* Linux: CI_DRM_5756 -> CI_DRM_5763
CI_DRM_5756: 0a2a982693ac3f3ecabf8e6c12cb18aa993ae3b0 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_5763: de2772b353b83e6347687973dfff6f7f5257e364 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_2640: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2640/
IGT_4888: 71ad19eb8fe4f0eecae3bf063e107293b90b9abc @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2640/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11. (rev2)
2019-03-15 10:58 [igt-dev] [PATCH i-g-t] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 Anshuman Gupta
2019-03-18 8:33 ` [igt-dev] ✓ Fi.CI.BAT: success for igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11. (rev2) Patchwork
@ 2019-03-18 10:20 ` Patchwork
1 sibling, 0 replies; 4+ messages in thread
From: Patchwork @ 2019-03-18 10:20 UTC (permalink / raw)
To: Anshuman Gupta; +Cc: igt-dev
== Series Details ==
Series: igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11. (rev2)
URL : https://patchwork.freedesktop.org/series/58051/
State : success
== Summary ==
CI Bug Log - changes from IGT_4888_full -> IGTPW_2640_full
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with IGTPW_2640_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_2640_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/58051/revisions/2/mbox/
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_2640_full:
### IGT changes ###
#### Warnings ####
* igt@i915_pm_lpsp@screens-disabled:
- shard-apl: SKIP [fdo#109271] -> FAIL
Known issues
------------
Here are the changes found in IGTPW_2640_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@3x-modeset-transitions-nonblocking:
- shard-snb: NOTRUN -> SKIP [fdo#109271] / [fdo#109278] +10
* igt@kms_atomic_transition@4x-modeset-transitions-nonblocking-fencing:
- shard-glk: NOTRUN -> SKIP [fdo#109271] / [fdo#109278]
* igt@kms_busy@extended-modeset-hang-newfb-render-c:
- shard-kbl: PASS -> DMESG-WARN [fdo#107956] +1
* igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-b:
- shard-snb: NOTRUN -> DMESG-WARN [fdo#107956]
* igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-c:
- shard-hsw: PASS -> DMESG-WARN [fdo#107956] +1
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic:
- shard-apl: PASS -> FAIL [fdo#107725] / [fdo#108145]
- shard-glk: PASS -> FAIL [fdo#108145]
- shard-kbl: PASS -> FAIL [fdo#107725] / [fdo#108145]
* igt@kms_color@pipe-a-ctm-max:
- shard-kbl: PASS -> FAIL [fdo#108147]
* igt@kms_color@pipe-b-ctm-max:
- shard-apl: PASS -> FAIL [fdo#108147] +1
* igt@kms_color@pipe-c-legacy-gamma:
- shard-apl: PASS -> FAIL [fdo#104782]
* igt@kms_cursor_crc@cursor-256x85-random:
- shard-apl: PASS -> FAIL [fdo#103232] +7
* igt@kms_cursor_crc@cursor-64x64-random:
- shard-kbl: PASS -> FAIL [fdo#103232] +1
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-glk: PASS -> FAIL [fdo#105363]
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-glk: PASS -> FAIL [fdo#103060]
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-glk: PASS -> FAIL [fdo#103167] +2
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
- shard-apl: PASS -> FAIL [fdo#103167] +1
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-kbl: NOTRUN -> SKIP [fdo#109271] +4
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
- shard-snb: NOTRUN -> SKIP [fdo#109271] +105
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
- shard-snb: PASS -> INCOMPLETE [fdo#105411]
* igt@kms_psr@sprite_plane_onoff:
- shard-glk: NOTRUN -> SKIP [fdo#109271] +11
* igt@kms_setmode@basic:
- shard-hsw: PASS -> FAIL [fdo#99912]
* igt@kms_vblank@pipe-b-ts-continuation-modeset:
- shard-apl: PASS -> FAIL [fdo#104894]
* igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
- shard-apl: NOTRUN -> SKIP [fdo#109271] +6
* igt@sw_sync@sync_busy_fork_unixsocket:
- shard-snb: NOTRUN -> FAIL [fdo#110150 ]
#### Possible fixes ####
* igt@gem_eio@reset-stress:
- shard-snb: FAIL [fdo#109661] -> PASS
* igt@i915_pm_lpsp@non-edp:
- shard-glk: SKIP [fdo#109271] -> PASS +1
- shard-kbl: SKIP [fdo#109271] -> PASS +1
- shard-apl: SKIP [fdo#109271] -> PASS
* igt@kms_busy@extended-modeset-hang-newfb-render-b:
- shard-hsw: DMESG-WARN [fdo#107956] -> PASS +1
- shard-kbl: DMESG-WARN [fdo#107956] -> PASS
* igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-a:
- shard-snb: DMESG-WARN [fdo#107956] -> PASS +1
* igt@kms_cursor_crc@cursor-128x128-onscreen:
- shard-apl: FAIL [fdo#103232] -> PASS
* igt@kms_cursor_crc@cursor-64x64-suspend:
- shard-apl: FAIL [fdo#103191] / [fdo#103232] -> PASS
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-glk: FAIL [fdo#103060] -> PASS
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-apl: FAIL [fdo#103167] -> PASS +1
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-glk: FAIL [fdo#103167] -> PASS +2
- shard-kbl: FAIL [fdo#103167] -> PASS +1
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
- shard-kbl: INCOMPLETE [fdo#103665] -> PASS
* {igt@kms_plane@pixel-format-pipe-a-planes-source-clamping}:
- shard-apl: FAIL [fdo#110033] -> PASS +1
- shard-kbl: FAIL -> PASS
* igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
- shard-glk: FAIL [fdo#108145] -> PASS
- shard-kbl: FAIL [fdo#108145] -> PASS
- shard-apl: FAIL [fdo#108145] -> PASS
* {igt@kms_plane_multiple@atomic-pipe-b-tiling-none}:
- shard-apl: FAIL [fdo#110037] -> PASS +1
* igt@kms_setmode@basic:
- shard-kbl: FAIL [fdo#99912] -> PASS
* igt@kms_vblank@pipe-c-ts-continuation-modeset:
- shard-kbl: FAIL [fdo#104894] -> PASS
- shard-apl: FAIL [fdo#104894] -> PASS
#### Warnings ####
* igt@kms_cursor_crc@cursor-64x64-suspend:
- shard-kbl: FAIL [fdo#103191] / [fdo#103232] -> INCOMPLETE [fdo#103665]
* igt@kms_plane_scaling@pipe-a-scaler-with-pixel-format:
- shard-glk: SKIP [fdo#109271] / [fdo#109278] -> FAIL [fdo#110098] +1
* igt@kms_plane_scaling@pipe-a-scaler-with-rotation:
- shard-glk: FAIL [fdo#110098] -> SKIP [fdo#109271] / [fdo#109278] +1
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103060]: https://bugs.freedesktop.org/show_bug.cgi?id=103060
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191
[fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
[fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
[fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782
[fdo#104894]: https://bugs.freedesktop.org/show_bug.cgi?id=104894
[fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
[fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
[fdo#107725]: https://bugs.freedesktop.org/show_bug.cgi?id=107725
[fdo#107956]: https://bugs.freedesktop.org/show_bug.cgi?id=107956
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#108147]: https://bugs.freedesktop.org/show_bug.cgi?id=108147
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109661]: https://bugs.freedesktop.org/show_bug.cgi?id=109661
[fdo#110033]: https://bugs.freedesktop.org/show_bug.cgi?id=110033
[fdo#110037]: https://bugs.freedesktop.org/show_bug.cgi?id=110037
[fdo#110038]: https://bugs.freedesktop.org/show_bug.cgi?id=110038
[fdo#110098]: https://bugs.freedesktop.org/show_bug.cgi?id=110098
[fdo#110150 ]: https://bugs.freedesktop.org/show_bug.cgi?id=110150
[fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912
Participating hosts (7 -> 5)
------------------------------
Missing (2): shard-skl shard-iclb
Build changes
-------------
* IGT: IGT_4888 -> IGTPW_2640
* Linux: CI_DRM_5756 -> CI_DRM_5763
CI_DRM_5756: 0a2a982693ac3f3ecabf8e6c12cb18aa993ae3b0 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_5763: de2772b353b83e6347687973dfff6f7f5257e364 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_2640: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2640/
IGT_4888: 71ad19eb8fe4f0eecae3bf063e107293b90b9abc @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2640/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [igt-dev] ✓ Fi.CI.BAT: success for igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11. (rev2)
[not found] ` <b3563c2f-a8b5-70d0-7a4b-4658d2947fb6@intel.com>
@ 2019-03-27 11:26 ` Gupta, Anshuman
0 siblings, 0 replies; 4+ messages in thread
From: Gupta, Anshuman @ 2019-03-27 11:26 UTC (permalink / raw)
To: arkadiusz.hiler, tomi.p.sarvela; +Cc: igt-dev
Hi Arek/Tomi ,
Could you please forced this series to test on ICL, ICL is affected
platform.
Thanks,
Anshuman Gupta.
> On 3/18/2019 2:03 PM, Patchwork wrote:
>> == Series Details ==
>>
>> Series: igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11.
>> (rev2)
>> URL : https://patchwork.freedesktop.org/series/58051/
>> State : success
>>
>> == Summary ==
>>
>> CI Bug Log - changes from IGT_4888 -> IGTPW_2640
>> ====================================================
>>
>> Summary
>> -------
>>
>> **SUCCESS**
>>
>> No regressions found.
>>
>> External URL:
>> https://patchwork.freedesktop.org/api/1.0/series/58051/revisions/2/mbox/
>>
>> Known issues
>> ------------
>>
>> Here are the changes found in IGTPW_2640 that come from known issues:
>>
>> ### IGT changes ###
>>
>> #### Issues hit ####
>>
>> * igt@amdgpu/amd_cs_nop@sync-gfx0:
>> - fi-kbl-7567u: NOTRUN -> SKIP [fdo#109271] +17
>>
>> * igt@debugfs_test@read_all_entries:
>> - fi-kbl-7567u: PASS -> DMESG-WARN [fdo#103558] / [fdo#105602]
>>
>> * igt@gem_exec_suspend@basic-s3:
>> - fi-kbl-7567u: PASS -> DMESG-WARN [fdo#103558] /
>> [fdo#105079] / [fdo#105602] +2
>>
>> * igt@i915_module_load@reload:
>> - fi-kbl-7567u: PASS -> DMESG-WARN [fdo#105602] / [fdo#108529]
>>
>> * igt@i915_pm_rpm@module-reload:
>> - fi-kbl-7567u: NOTRUN -> DMESG-WARN [fdo#108529]
>>
>> * igt@kms_busy@basic-flip-a:
>> - fi-kbl-7567u: PASS -> SKIP [fdo#109271] / [fdo#109278] +2
>>
>> * igt@kms_chamelium@hdmi-edid-read:
>> - fi-kbl-7567u: PASS -> FAIL [fdo#109569] +1
>>
>> * igt@kms_chamelium@hdmi-hpd-fast:
>> - fi-kbl-7567u: PASS -> FAIL [fdo#109800]
>>
>> * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
>> - fi-whl-u: PASS -> FAIL [fdo#103375] +3
>> - fi-byt-clapper: PASS -> FAIL [fdo#103191] / [fdo#107362] +2
>>
>> * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
>> - fi-kbl-7567u: PASS -> DMESG-FAIL [fdo#105079]
>>
>> * igt@prime_vgem@basic-fence-flip:
>> - fi-kbl-7567u: PASS -> SKIP [fdo#109271] +2
>>
>> #### Possible fixes ####
>>
>> * igt@kms_pipe_crc_basic@read-crc-pipe-b:
>> - fi-byt-clapper: FAIL [fdo#107362] -> PASS
>>
>> * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
>> - fi-byt-clapper: FAIL [fdo#103191] / [fdo#107362] -> PASS +1
>>
>> * igt@prime_vgem@basic-fence-flip:
>> - fi-ilk-650: FAIL [fdo#104008] -> PASS
>>
>> [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191
>> [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
>> [fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558
>> [fdo#104008]: https://bugs.freedesktop.org/show_bug.cgi?id=104008
>> [fdo#105079]: https://bugs.freedesktop.org/show_bug.cgi?id=105079
>> [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602
>> [fdo#107362]: https://bugs.freedesktop.org/show_bug.cgi?id=107362
>> [fdo#108529]: https://bugs.freedesktop.org/show_bug.cgi?id=108529
>> [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>> [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
>> [fdo#109569]: https://bugs.freedesktop.org/show_bug.cgi?id=109569
>> [fdo#109800]: https://bugs.freedesktop.org/show_bug.cgi?id=109800
>>
>>
>> Participating hosts (46 -> 36)
>> ------------------------------
>>
>> Missing (10): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u
>> fi-byt-j1900 fi-byt-squawks fi-bsw-cyan fi-skl-6260u fi-apl-guc
>> fi-gdg-551 fi-bdw-samus
>>
>>
>> Build changes
>> -------------
>>
>> * IGT: IGT_4888 -> IGTPW_2640
>> * Linux: CI_DRM_5756 -> CI_DRM_5763
>>
>> CI_DRM_5756: 0a2a982693ac3f3ecabf8e6c12cb18aa993ae3b0 @
>> git://anongit.freedesktop.org/gfx-ci/linux
>> CI_DRM_5763: de2772b353b83e6347687973dfff6f7f5257e364 @
>> git://anongit.freedesktop.org/gfx-ci/linux
>> IGTPW_2640: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2640/
>> IGT_4888: 71ad19eb8fe4f0eecae3bf063e107293b90b9abc @
>> git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>>
>> == Logs ==
>>
>> For more details see:
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2640/
>>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-03-27 11:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-15 10:58 [igt-dev] [PATCH i-g-t] igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11 Anshuman Gupta
2019-03-18 8:33 ` [igt-dev] ✓ Fi.CI.BAT: success for igt/i915/i915_pm_lpsp enable pm_lpsp for platforms till Gen11. (rev2) Patchwork
[not found] ` <b3563c2f-a8b5-70d0-7a4b-4658d2947fb6@intel.com>
2019-03-27 11:26 ` Gupta, Anshuman
2019-03-18 10:20 ` [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