* [igt-dev] [PATCH i-g-t 1/2] tests/kms_chamelium: Fix dp-mode-timings test
@ 2020-04-07 9:00 Arkadiusz Hiler
2020-04-07 9:00 ` [igt-dev] [PATCH i-g-t 2/2] HAX: add dp-mode-timings to BAT Arkadiusz Hiler
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Arkadiusz Hiler @ 2020-04-07 9:00 UTC (permalink / raw)
To: igt-dev; +Cc: Nidhi Gupta
Chamelium provides us with hsync_offset value which is read form its
receiver register described as "Hsync start edge to H active start
edge", vsync_offest is analogous.
Let's calculate the correct things on IGT side.
Cc: Nidhi Gupta <nidhi1.gupta@intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
tests/kms_chamelium.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/tests/kms_chamelium.c b/tests/kms_chamelium.c
index 77c203d3..19df784b 100644
--- a/tests/kms_chamelium.c
+++ b/tests/kms_chamelium.c
@@ -915,10 +915,14 @@ static void check_mode(struct chamelium *chamelium, struct chamelium_port *port,
chamelium_port_get_video_params(chamelium, port, &video_params);
mode_clock = (double) mode->clock / 1000;
- mode_hsync_offset = mode->hsync_start - mode->hdisplay;
- mode_vsync_offset = mode->vsync_start - mode->vdisplay;
+
+ /* this is what chamelium understands as offsets */
+ mode_hsync_offset = mode->htotal - mode->hsync_start;
+ mode_vsync_offset = mode->vtotal - mode->vsync_start;
+
mode_hsync_width = mode->hsync_end - mode->hsync_start;
mode_vsync_width = mode->vsync_end - mode->vsync_start;
+
mode_hsync_polarity = !!(mode->flags & DRM_MODE_FLAG_PHSYNC);
mode_vsync_polarity = !!(mode->flags & DRM_MODE_FLAG_PVSYNC);
--
2.24.1
_______________________________________________
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] [PATCH i-g-t 2/2] HAX: add dp-mode-timings to BAT
2020-04-07 9:00 [igt-dev] [PATCH i-g-t 1/2] tests/kms_chamelium: Fix dp-mode-timings test Arkadiusz Hiler
@ 2020-04-07 9:00 ` Arkadiusz Hiler
2020-04-07 9:50 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_chamelium: Fix dp-mode-timings test Patchwork
2020-04-07 16:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 0 replies; 5+ messages in thread
From: Arkadiusz Hiler @ 2020-04-07 9:00 UTC (permalink / raw)
To: igt-dev
---
tests/intel-ci/fast-feedback.testlist | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index 620d5f3a..59ac3554 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -89,6 +89,7 @@ igt@kms_busy@basic
igt@kms_chamelium@dp-hpd-fast
igt@kms_chamelium@dp-edid-read
igt@kms_chamelium@dp-crc-fast
+igt@kms_chamelium@dp-mode-timings
igt@kms_chamelium@hdmi-hpd-fast
igt@kms_chamelium@hdmi-edid-read
igt@kms_chamelium@hdmi-crc-fast
--
2.24.1
_______________________________________________
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 series starting with [i-g-t,1/2] tests/kms_chamelium: Fix dp-mode-timings test
2020-04-07 9:00 [igt-dev] [PATCH i-g-t 1/2] tests/kms_chamelium: Fix dp-mode-timings test Arkadiusz Hiler
2020-04-07 9:00 ` [igt-dev] [PATCH i-g-t 2/2] HAX: add dp-mode-timings to BAT Arkadiusz Hiler
@ 2020-04-07 9:50 ` Patchwork
2020-04-07 16:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2020-04-07 9:50 UTC (permalink / raw)
To: Arkadiusz Hiler; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/kms_chamelium: Fix dp-mode-timings test
URL : https://patchwork.freedesktop.org/series/75601/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_8264 -> IGTPW_4421
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/index.html
Known issues
------------
Here are the changes found in IGTPW_4421 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@basic-rte:
- fi-icl-dsi: [PASS][1] -> [INCOMPLETE][2] ([i915#189])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/fi-icl-dsi/igt@i915_pm_rpm@basic-rte.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/fi-icl-dsi/igt@i915_pm_rpm@basic-rte.html
* igt@kms_chamelium@dp-edid-read:
- fi-kbl-7500u: [PASS][3] -> [FAIL][4] ([i915#976])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/fi-kbl-7500u/igt@kms_chamelium@dp-edid-read.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/fi-kbl-7500u/igt@kms_chamelium@dp-edid-read.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s4-devices:
- fi-tgl-y: [FAIL][5] ([i915#1158]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html
* igt@i915_selftest@live@hangcheck:
- fi-icl-y: [INCOMPLETE][7] ([i915#1580]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/fi-icl-y/igt@i915_selftest@live@hangcheck.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/fi-icl-y/igt@i915_selftest@live@hangcheck.html
[i915#1158]: https://gitlab.freedesktop.org/drm/intel/issues/1158
[i915#1580]: https://gitlab.freedesktop.org/drm/intel/issues/1580
[i915#189]: https://gitlab.freedesktop.org/drm/intel/issues/189
[i915#976]: https://gitlab.freedesktop.org/drm/intel/issues/976
Participating hosts (53 -> 46)
------------------------------
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
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5573 -> IGTPW_4421
CI-20190529: 20190529
CI_DRM_8264: e0104585f880a64d4a9b40803cf4fb51ab499f7c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4421: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/index.html
IGT_5573: 9c582425d6b4fc1de9fc2ffc8015cc6f0a0d3e98 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/index.html
_______________________________________________
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: failure for series starting with [i-g-t,1/2] tests/kms_chamelium: Fix dp-mode-timings test
2020-04-07 9:00 [igt-dev] [PATCH i-g-t 1/2] tests/kms_chamelium: Fix dp-mode-timings test Arkadiusz Hiler
2020-04-07 9:00 ` [igt-dev] [PATCH i-g-t 2/2] HAX: add dp-mode-timings to BAT Arkadiusz Hiler
2020-04-07 9:50 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_chamelium: Fix dp-mode-timings test Patchwork
@ 2020-04-07 16:19 ` Patchwork
2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2020-04-07 16:19 UTC (permalink / raw)
To: Arkadiusz Hiler; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/kms_chamelium: Fix dp-mode-timings test
URL : https://patchwork.freedesktop.org/series/75601/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_8264_full -> IGTPW_4421_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_4421_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_4421_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://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_4421_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_hdmi_inject@inject-audio:
- shard-kbl: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl1/igt@kms_hdmi_inject@inject-audio.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl3/igt@kms_hdmi_inject@inject-audio.html
Known issues
------------
Here are the changes found in IGTPW_4421_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox:
- shard-iclb: [PASS][3] -> [FAIL][4] ([i915#1528])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-iclb7/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-iclb5/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html
* igt@gem_workarounds@suspend-resume:
- shard-kbl: [PASS][5] -> [DMESG-WARN][6] ([i915#180])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl6/igt@gem_workarounds@suspend-resume.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl2/igt@gem_workarounds@suspend-resume.html
* igt@i915_pm_rpm@i2c:
- shard-tglb: [PASS][7] -> [SKIP][8] ([i915#1316] / [i915#579])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-tglb6/igt@i915_pm_rpm@i2c.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-tglb7/igt@i915_pm_rpm@i2c.html
- shard-glk: [PASS][9] -> [SKIP][10] ([fdo#109271]) +2 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-glk4/igt@i915_pm_rpm@i2c.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-glk4/igt@i915_pm_rpm@i2c.html
- shard-hsw: [PASS][11] -> [SKIP][12] ([fdo#109271]) +2 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-hsw1/igt@i915_pm_rpm@i2c.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-hsw1/igt@i915_pm_rpm@i2c.html
- shard-iclb: [PASS][13] -> [SKIP][14] ([i915#1316] / [i915#579])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-iclb8/igt@i915_pm_rpm@i2c.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-iclb6/igt@i915_pm_rpm@i2c.html
* igt@i915_suspend@forcewake:
- shard-kbl: [PASS][15] -> [INCOMPLETE][16] ([i915#155])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl7/igt@i915_suspend@forcewake.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl3/igt@i915_suspend@forcewake.html
* igt@kms_cursor_crc@pipe-a-cursor-128x128-random:
- shard-apl: [PASS][17] -> [FAIL][18] ([i915#54] / [i915#95]) +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-apl6/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-apl6/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html
* igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen:
- shard-kbl: [PASS][19] -> [FAIL][20] ([i915#54] / [i915#93] / [i915#95])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html
* igt@kms_cursor_crc@pipe-a-cursor-size-change:
- shard-glk: [PASS][21] -> [FAIL][22] ([i915#54])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-glk5/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-glk3/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
- shard-apl: [PASS][23] -> [FAIL][24] ([i915#54])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-apl7/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-apl8/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
- shard-kbl: [PASS][25] -> [FAIL][26] ([i915#54])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
* igt@kms_cursor_crc@pipe-c-cursor-suspend:
- shard-apl: [PASS][27] -> [DMESG-WARN][28] ([i915#180]) +1 similar issue
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
* igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy:
- shard-kbl: [PASS][29] -> [FAIL][30] ([i915#1566] / [i915#93] / [i915#95])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl7/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl2/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
* igt@kms_draw_crc@draw-method-rgb565-render-untiled:
- shard-glk: [PASS][31] -> [FAIL][32] ([i915#52] / [i915#54]) +3 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-untiled.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-glk4/igt@kms_draw_crc@draw-method-rgb565-render-untiled.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-glk: [PASS][33] -> [FAIL][34] ([i915#34])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-glk7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-glk7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip_tiling@flip-changes-tiling-y:
- shard-apl: [PASS][35] -> [FAIL][36] ([i915#95]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-apl2/igt@kms_flip_tiling@flip-changes-tiling-y.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-apl2/igt@kms_flip_tiling@flip-changes-tiling-y.html
* igt@kms_flip_tiling@flip-changes-tiling-yf:
- shard-kbl: [PASS][37] -> [FAIL][38] ([i915#699] / [i915#93] / [i915#95])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl4/igt@kms_flip_tiling@flip-changes-tiling-yf.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl6/igt@kms_flip_tiling@flip-changes-tiling-yf.html
* igt@kms_plane_cursor@pipe-a-overlay-size-128:
- shard-kbl: [PASS][39] -> [FAIL][40] ([i915#1559] / [i915#93] / [i915#95])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl6/igt@kms_plane_cursor@pipe-a-overlay-size-128.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl6/igt@kms_plane_cursor@pipe-a-overlay-size-128.html
- shard-apl: [PASS][41] -> [FAIL][42] ([i915#1559] / [i915#95])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-apl8/igt@kms_plane_cursor@pipe-a-overlay-size-128.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-apl7/igt@kms_plane_cursor@pipe-a-overlay-size-128.html
* igt@kms_psr@no_drrs:
- shard-iclb: [PASS][43] -> [FAIL][44] ([i915#173])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-iclb8/igt@kms_psr@no_drrs.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-iclb1/igt@kms_psr@no_drrs.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-iclb: [PASS][45] -> [SKIP][46] ([fdo#109441]) +1 similar issue
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm:
- shard-iclb: [PASS][47] -> [SKIP][48] ([fdo#109278])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-iclb6/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-iclb6/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
- shard-tglb: [PASS][49] -> [SKIP][50] ([fdo#112015])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-tglb7/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-tglb7/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
#### Possible fixes ####
* {igt@gem_ctx_isolation@preservation-s3@rcs0}:
- shard-apl: [DMESG-WARN][51] ([i915#180]) -> [PASS][52] +4 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-apl6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-apl7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_exec_balancer@hang:
- shard-tglb: [FAIL][53] ([i915#1277]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-tglb6/igt@gem_exec_balancer@hang.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-tglb3/igt@gem_exec_balancer@hang.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-hsw: [FAIL][55] ([i915#1516]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-hsw1/igt@i915_pm_rc6_residency@rc6-idle.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-hsw6/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_selftest@live@blt:
- shard-snb: [DMESG-FAIL][57] ([i915#1409]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-snb4/igt@i915_selftest@live@blt.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-snb2/igt@i915_selftest@live@blt.html
* igt@i915_suspend@debugfs-reader:
- shard-kbl: [DMESG-WARN][59] ([i915#180]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl2/igt@i915_suspend@debugfs-reader.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl1/igt@i915_suspend@debugfs-reader.html
* igt@kms_color@pipe-a-ctm-green-to-red:
- shard-kbl: [FAIL][61] ([i915#129]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl4/igt@kms_color@pipe-a-ctm-green-to-red.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl3/igt@kms_color@pipe-a-ctm-green-to-red.html
- shard-apl: [FAIL][63] ([i915#129]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-apl2/igt@kms_color@pipe-a-ctm-green-to-red.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-apl7/igt@kms_color@pipe-a-ctm-green-to-red.html
* igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen:
- shard-kbl: [FAIL][65] ([i915#54] / [i915#93] / [i915#95]) -> [PASS][66] +1 similar issue
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html
* igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled:
- shard-glk: [FAIL][67] ([i915#52] / [i915#54]) -> [PASS][68] +4 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-glk5/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html
* igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled:
- shard-glk: [FAIL][69] ([i915#177] / [i915#52] / [i915#54]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-glk9/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-glk6/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-glk: [FAIL][71] ([i915#34]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-apl: [FAIL][73] ([i915#79]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-apl4/igt@kms_flip@flip-vs-expired-vblank.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-apl4/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence:
- shard-apl: [FAIL][75] ([i915#53] / [i915#95]) -> [PASS][76] +1 similar issue
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-apl4/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-apl8/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
- shard-kbl: [FAIL][77] ([i915#53] / [i915#93] / [i915#95]) -> [PASS][78] +1 similar issue
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
- shard-snb: [DMESG-WARN][79] ([i915#42]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-snb6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-snb7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
* igt@kms_plane_lowres@pipe-a-tiling-none:
- shard-kbl: [DMESG-WARN][81] ([i915#165] / [i915#78]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl2/igt@kms_plane_lowres@pipe-a-tiling-none.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl1/igt@kms_plane_lowres@pipe-a-tiling-none.html
* igt@kms_psr@psr2_no_drrs:
- shard-iclb: [SKIP][83] ([fdo#109441]) -> [PASS][84] +1 similar issue
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-iclb3/igt@kms_psr@psr2_no_drrs.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
* igt@kms_setmode@basic:
- shard-apl: [FAIL][85] ([i915#31]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-apl7/igt@kms_setmode@basic.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-apl6/igt@kms_setmode@basic.html
- shard-hsw: [FAIL][87] ([i915#31]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-hsw8/igt@kms_setmode@basic.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-hsw4/igt@kms_setmode@basic.html
* {igt@perf@blocking-parameterized}:
- shard-iclb: [FAIL][89] ([i915#1542]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-iclb8/igt@perf@blocking-parameterized.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-iclb1/igt@perf@blocking-parameterized.html
- shard-hsw: [FAIL][91] ([i915#1542]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-hsw6/igt@perf@blocking-parameterized.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-hsw4/igt@perf@blocking-parameterized.html
#### Warnings ####
* igt@i915_pm_dc@dc3co-vpb-simulation:
- shard-iclb: [SKIP][93] ([i915#658]) -> [SKIP][94] ([i915#588])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html
* igt@i915_pm_dc@dc6-psr:
- shard-tglb: [FAIL][95] ([i915#454]) -> [SKIP][96] ([i915#468])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-tglb1/igt@i915_pm_dc@dc6-psr.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-tglb2/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-tglb: [SKIP][97] ([fdo#111644] / [i915#1397]) -> [SKIP][98] ([i915#1316] / [i915#579])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-tglb8/igt@i915_pm_rpm@dpms-non-lpsp.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-tglb7/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-iclb: [SKIP][99] ([fdo#110892]) -> [SKIP][100] ([i915#1316] / [i915#579])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-iclb4/igt@i915_pm_rpm@dpms-non-lpsp.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-iclb6/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-kbl: [DMESG-WARN][101] ([i915#180] / [i915#93] / [i915#95]) -> [INCOMPLETE][102] ([i915#155])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl2/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_vblank@pipe-b-ts-continuation-suspend:
- shard-kbl: [INCOMPLETE][103] ([i915#155]) -> [DMESG-WARN][104] ([i915#180])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8264/shard-kbl4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/shard-kbl2/igt@kms_vblank@pipe-b-ts-continuation-suspend.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#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015
[i915#1277]: https://gitlab.freedesktop.org/drm/intel/issues/1277
[i915#129]: https://gitlab.freedesktop.org/drm/intel/issues/129
[i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1409]: https://gitlab.freedesktop.org/drm/intel/issues/1409
[i915#1516]: https://gitlab.freedesktop.org/drm/intel/issues/1516
[i915#1528]: https://gitlab.freedesktop.org/drm/intel/issues/1528
[i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
[i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
[i915#1559]: https://gitlab.freedesktop.org/drm/intel/issues/1559
[i915#1566]: https://gitlab.freedesktop.org/drm/intel/issues/1566
[i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165
[i915#173]: https://gitlab.freedesktop.org/drm/intel/issues/173
[i915#177]: https://gitlab.freedesktop.org/drm/intel/issues/177
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
[i915#34]: https://gitlab.freedesktop.org/drm/intel/issues/34
[i915#42]: https://gitlab.freedesktop.org/drm/intel/issues/42
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468
[i915#52]: https://gitlab.freedesktop.org/drm/intel/issues/52
[i915#53]: https://gitlab.freedesktop.org/drm/intel/issues/53
[i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
[i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
[i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#699]: https://gitlab.freedesktop.org/drm/intel/issues/699
[i915#78]: https://gitlab.freedesktop.org/drm/intel/issues/78
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#93]: https://gitlab.freedesktop.org/drm/intel/issues/93
[i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
Participating hosts (10 -> 8)
------------------------------
Missing (2): pig-skl-6260u pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5573 -> IGTPW_4421
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_8264: e0104585f880a64d4a9b40803cf4fb51ab499f7c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4421: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/index.html
IGT_5573: 9c582425d6b4fc1de9fc2ffc8015cc6f0a0d3e98 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4421/index.html
_______________________________________________
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] [PATCH i-g-t 1/2] tests/kms_chamelium: Fix dp-mode-timings test
@ 2020-04-07 10:13 Arkadiusz Hiler
2020-04-07 10:13 ` [igt-dev] [PATCH i-g-t 2/2] HAX: add dp-mode-timings to BAT Arkadiusz Hiler
0 siblings, 1 reply; 5+ messages in thread
From: Arkadiusz Hiler @ 2020-04-07 10:13 UTC (permalink / raw)
To: igt-dev; +Cc: Nidhi Gupta, Petri Latvala
Chamelium provides us with hsync_offset value which is read form its
receiver register described as "Hsync start edge to H active start
edge", vsync_offest is analogous.
Let's calculate the correct things on IGT side.
v2: keep the original checks for HDMI (Petri)
Cc: Petri Latvala <petri.latvala@intel.com>
Cc: Nidhi Gupta <nidhi1.gupta@intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
tests/kms_chamelium.c | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/tests/kms_chamelium.c b/tests/kms_chamelium.c
index 77c203d3..69c9de4e 100644
--- a/tests/kms_chamelium.c
+++ b/tests/kms_chamelium.c
@@ -915,10 +915,20 @@ static void check_mode(struct chamelium *chamelium, struct chamelium_port *port,
chamelium_port_get_video_params(chamelium, port, &video_params);
mode_clock = (double) mode->clock / 1000;
- mode_hsync_offset = mode->hsync_start - mode->hdisplay;
- mode_vsync_offset = mode->vsync_start - mode->vdisplay;
+
+ if (chamelium_port_get_type(port) == DRM_MODE_CONNECTOR_DisplayPort) {
+ /* this is what chamelium understands as offsets for DP */
+ mode_hsync_offset = mode->htotal - mode->hsync_start;
+ mode_vsync_offset = mode->vtotal - mode->vsync_start;
+ } else {
+ /* and this is what they are for other connectors */
+ mode_hsync_offset = mode->hsync_start - mode->hdisplay;
+ mode_vsync_offset = mode->vsync_start - mode->vdisplay;
+ }
+
mode_hsync_width = mode->hsync_end - mode->hsync_start;
mode_vsync_width = mode->vsync_end - mode->vsync_start;
+
mode_hsync_polarity = !!(mode->flags & DRM_MODE_FLAG_PHSYNC);
mode_vsync_polarity = !!(mode->flags & DRM_MODE_FLAG_PVSYNC);
--
2.24.1
_______________________________________________
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
end of thread, other threads:[~2020-04-07 16:19 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-07 9:00 [igt-dev] [PATCH i-g-t 1/2] tests/kms_chamelium: Fix dp-mode-timings test Arkadiusz Hiler
2020-04-07 9:00 ` [igt-dev] [PATCH i-g-t 2/2] HAX: add dp-mode-timings to BAT Arkadiusz Hiler
2020-04-07 9:50 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_chamelium: Fix dp-mode-timings test Patchwork
2020-04-07 16:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2020-04-07 10:13 [igt-dev] [PATCH i-g-t 1/2] " Arkadiusz Hiler
2020-04-07 10:13 ` [igt-dev] [PATCH i-g-t 2/2] HAX: add dp-mode-timings to BAT Arkadiusz Hiler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox