* [igt-dev] [PATCH i-g-t v2 1/2] chamelium: Fix inverted xr24 pattern paint dimensions
2018-11-16 8:05 [igt-dev] [PATCH i-g-t v2 0/2] chamelium: xr24 pattern fixes Paul Kocialkowski
@ 2018-11-16 8:05 ` Paul Kocialkowski
2018-11-16 8:05 ` [igt-dev] [PATCH i-g-t v2 2/2] chamelium: Pass and use stride for xr24 pattern paint Paul Kocialkowski
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Paul Kocialkowski @ 2018-11-16 8:05 UTC (permalink / raw)
To: igt-dev; +Cc: Thomas Petazzoni
The xr24 pattern for chamelium testing appears mangled when checking it
on an actual display. This is because the horizontal and vertical
display sizes are inverted when used as width and height.
Put them back in order.
Signed-off-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
Reviewed-by: Maxime Ripard <maxime.ripard@bootlin.com>
---
tests/kms_chamelium.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/kms_chamelium.c b/tests/kms_chamelium.c
index e0e3e3f1..4f1977c3 100644
--- a/tests/kms_chamelium.c
+++ b/tests/kms_chamelium.c
@@ -516,7 +516,7 @@ static int chamelium_get_pattern_fb(data_t *data, drmModeModeInfo *mode,
ptr = igt_fb_map_buffer(fb->fd, fb);
igt_assert(ptr);
- chamelium_paint_xr24_pattern(ptr, mode->vdisplay, mode->hdisplay);
+ chamelium_paint_xr24_pattern(ptr, mode->hdisplay, mode->vdisplay);
igt_fb_unmap_buffer(fb, ptr);
return fb_id;
--
2.19.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 v2 2/2] chamelium: Pass and use stride for xr24 pattern paint
2018-11-16 8:05 [igt-dev] [PATCH i-g-t v2 0/2] chamelium: xr24 pattern fixes Paul Kocialkowski
2018-11-16 8:05 ` [igt-dev] [PATCH i-g-t v2 1/2] chamelium: Fix inverted xr24 pattern paint dimensions Paul Kocialkowski
@ 2018-11-16 8:05 ` Paul Kocialkowski
2018-11-16 8:45 ` [igt-dev] ✓ Fi.CI.BAT: success for chamelium: xr24 pattern fixes Patchwork
2018-11-16 10:01 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Paul Kocialkowski @ 2018-11-16 8:05 UTC (permalink / raw)
To: igt-dev; +Cc: Thomas Petazzoni
Using the width from the selected mode is not sufficient to correctly
paint a pattern on the framebuffer memory: the stride also has to be
taken in account for proper line start alignment.
Pass the stride and use it in chamelium_paint_xr24_pattern.
Signed-off-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
Reviewed-by: Maxime Ripard <maxime.ripard@bootlin.com>
---
tests/kms_chamelium.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/tests/kms_chamelium.c b/tests/kms_chamelium.c
index 4f1977c3..a8d8aeee 100644
--- a/tests/kms_chamelium.c
+++ b/tests/kms_chamelium.c
@@ -487,7 +487,8 @@ enable_output(data_t *data,
}
static void chamelium_paint_xr24_pattern(uint32_t *data,
- size_t width, size_t height)
+ size_t width, size_t height,
+ size_t stride)
{
uint32_t colors[] = { 0xff000000,
0xffff0000,
@@ -498,7 +499,7 @@ static void chamelium_paint_xr24_pattern(uint32_t *data,
for (i = 0; i < height; i++)
for (j = 0; j < width; j++)
- *(data + i * width + j) = colors[((j / 64) + (i / 64)) % 5];
+ *(data + i * stride / 4 + j) = colors[((j / 64) + (i / 64)) % 5];
}
static int chamelium_get_pattern_fb(data_t *data, drmModeModeInfo *mode,
@@ -516,7 +517,8 @@ static int chamelium_get_pattern_fb(data_t *data, drmModeModeInfo *mode,
ptr = igt_fb_map_buffer(fb->fd, fb);
igt_assert(ptr);
- chamelium_paint_xr24_pattern(ptr, mode->hdisplay, mode->vdisplay);
+ chamelium_paint_xr24_pattern(ptr, mode->hdisplay, mode->vdisplay,
+ fb->strides[0]);
igt_fb_unmap_buffer(fb, ptr);
return fb_id;
--
2.19.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 chamelium: xr24 pattern fixes
2018-11-16 8:05 [igt-dev] [PATCH i-g-t v2 0/2] chamelium: xr24 pattern fixes Paul Kocialkowski
2018-11-16 8:05 ` [igt-dev] [PATCH i-g-t v2 1/2] chamelium: Fix inverted xr24 pattern paint dimensions Paul Kocialkowski
2018-11-16 8:05 ` [igt-dev] [PATCH i-g-t v2 2/2] chamelium: Pass and use stride for xr24 pattern paint Paul Kocialkowski
@ 2018-11-16 8:45 ` Patchwork
2018-11-16 10:01 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2018-11-16 8:45 UTC (permalink / raw)
To: Paul Kocialkowski; +Cc: igt-dev
== Series Details ==
Series: chamelium: xr24 pattern fixes
URL : https://patchwork.freedesktop.org/series/52587/
State : success
== Summary ==
= CI Bug Log - changes from IGT_4716 -> IGTPW_2069 =
== Summary - SUCCESS ==
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/52587/revisions/1/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_2069:
=== IGT changes ===
==== Possible regressions ====
{igt@runner@aborted}:
fi-bsw-n3050: NOTRUN -> FAIL
== Known issues ==
Here are the changes found in IGTPW_2069 that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@drv_selftest@live_contexts:
fi-icl-u: NOTRUN -> DMESG-FAIL (fdo#108569)
igt@gem_ctx_create@basic-files:
fi-bsw-n3050: PASS -> DMESG-FAIL (fdo#108656)
igt@gem_exec_store@basic-bsd:
fi-cfl-8109u: PASS -> DMESG-WARN (fdo#106107) +1
igt@kms_frontbuffer_tracking@basic:
fi-hsw-peppy: PASS -> DMESG-WARN (fdo#102614)
==== Possible fixes ====
igt@drv_selftest@live_contexts:
fi-skl-6700k2: INCOMPLETE -> PASS
igt@gem_ctx_create@basic-files:
fi-icl-u2: DMESG-WARN (fdo#107724) -> PASS
igt@kms_chamelium@common-hpd-after-suspend:
fi-skl-6700k2: TIMEOUT (fdo#108715) -> PASS
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
fi-icl-u: INCOMPLETE (fdo#107713) -> PASS
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
fdo#102614 https://bugs.freedesktop.org/show_bug.cgi?id=102614
fdo#106107 https://bugs.freedesktop.org/show_bug.cgi?id=106107
fdo#107713 https://bugs.freedesktop.org/show_bug.cgi?id=107713
fdo#107724 https://bugs.freedesktop.org/show_bug.cgi?id=107724
fdo#108569 https://bugs.freedesktop.org/show_bug.cgi?id=108569
fdo#108656 https://bugs.freedesktop.org/show_bug.cgi?id=108656
fdo#108715 https://bugs.freedesktop.org/show_bug.cgi?id=108715
== Participating hosts (49 -> 46) ==
Additional (1): fi-pnv-d510
Missing (4): fi-ilk-m540 fi-byt-squawks fi-snb-2520m fi-hsw-4200u
== Build changes ==
* IGT: IGT_4716 -> IGTPW_2069
CI_DRM_5149: c9e35242429a47b1c550dce738933bbd1739d897 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_2069: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2069/
IGT_4716: 111593c49d812a4f4ff9ab0ef053a3ab88a6f73f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2069/issues.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: success for chamelium: xr24 pattern fixes
2018-11-16 8:05 [igt-dev] [PATCH i-g-t v2 0/2] chamelium: xr24 pattern fixes Paul Kocialkowski
` (2 preceding siblings ...)
2018-11-16 8:45 ` [igt-dev] ✓ Fi.CI.BAT: success for chamelium: xr24 pattern fixes Patchwork
@ 2018-11-16 10:01 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2018-11-16 10:01 UTC (permalink / raw)
To: Paul Kocialkowski; +Cc: igt-dev
== Series Details ==
Series: chamelium: xr24 pattern fixes
URL : https://patchwork.freedesktop.org/series/52587/
State : success
== Summary ==
= CI Bug Log - changes from IGT_4716_full -> IGTPW_2069_full =
== Summary - WARNING ==
Minor unknown changes coming with IGTPW_2069_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_2069_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/52587/revisions/1/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_2069_full:
=== IGT changes ===
==== Warnings ====
igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
shard-snb: SKIP -> PASS +1
== Known issues ==
Here are the changes found in IGTPW_2069_full that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@gem_exec_blt@dumb-buf-min:
shard-snb: PASS -> INCOMPLETE (fdo#105411, fdo#107469)
igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-b:
shard-glk: PASS -> DMESG-WARN (fdo#107956)
igt@kms_cursor_crc@cursor-256x256-random:
shard-apl: PASS -> FAIL (fdo#103232) +4
igt@kms_cursor_crc@cursor-256x256-sliding:
shard-glk: PASS -> FAIL (fdo#103232) +4
igt@kms_cursor_crc@cursor-256x85-sliding:
shard-kbl: PASS -> FAIL (fdo#103232) +5
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render:
shard-apl: PASS -> FAIL (fdo#103167) +1
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
shard-kbl: PASS -> FAIL (fdo#103167)
igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
shard-glk: PASS -> FAIL (fdo#103167) +9
igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
shard-glk: PASS -> FAIL (fdo#108145)
igt@kms_plane_multiple@atomic-pipe-a-tiling-y:
shard-glk: PASS -> FAIL (fdo#103166) +5
shard-apl: PASS -> FAIL (fdo#103166) +6
igt@kms_plane_multiple@atomic-pipe-b-tiling-y:
shard-kbl: PASS -> FAIL (fdo#103166) +1
igt@kms_setmode@basic:
shard-hsw: PASS -> FAIL (fdo#99912)
shard-kbl: PASS -> FAIL (fdo#99912)
==== Possible fixes ====
igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-a:
shard-hsw: DMESG-WARN (fdo#107956) -> PASS
igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-c:
shard-glk: DMESG-WARN (fdo#107956) -> PASS
igt@kms_ccs@pipe-b-crc-sprite-planes-basic:
shard-kbl: FAIL (fdo#107725, fdo#108145) -> PASS
igt@kms_cursor_crc@cursor-256x85-onscreen:
shard-apl: FAIL (fdo#103232) -> PASS +2
igt@kms_cursor_crc@cursor-64x64-sliding:
shard-kbl: FAIL (fdo#103232) -> PASS
igt@kms_cursor_crc@cursor-size-change:
shard-glk: FAIL (fdo#103232) -> PASS +3
igt@kms_cursor_legacy@cursora-vs-flipa-toggle:
shard-glk: DMESG-WARN (fdo#105763, fdo#106538) -> PASS
igt@kms_flip@flip-vs-expired-vblank:
shard-glk: FAIL (fdo#102887, fdo#105363) -> PASS
igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
shard-snb: INCOMPLETE (fdo#105411, fdo#107469) -> PASS
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
shard-glk: FAIL (fdo#103167) -> PASS
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
shard-kbl: FAIL (fdo#103167) -> PASS
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
shard-apl: FAIL (fdo#103167) -> PASS
igt@kms_plane@plane-position-covered-pipe-c-planes:
shard-kbl: FAIL (fdo#103166) -> PASS +1
igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max:
shard-glk: FAIL (fdo#108145) -> PASS +2
igt@pm_rpm@gem-mmap-cpu:
shard-apl: DMESG-WARN (fdo#105602, fdo#103558) -> PASS +5
fdo#102887 https://bugs.freedesktop.org/show_bug.cgi?id=102887
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#103558 https://bugs.freedesktop.org/show_bug.cgi?id=103558
fdo#105363 https://bugs.freedesktop.org/show_bug.cgi?id=105363
fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411
fdo#105602 https://bugs.freedesktop.org/show_bug.cgi?id=105602
fdo#105763 https://bugs.freedesktop.org/show_bug.cgi?id=105763
fdo#106538 https://bugs.freedesktop.org/show_bug.cgi?id=106538
fdo#107469 https://bugs.freedesktop.org/show_bug.cgi?id=107469
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#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912
== Participating hosts (6 -> 5) ==
Missing (1): shard-skl
== Build changes ==
* IGT: IGT_4716 -> IGTPW_2069
CI_DRM_5149: c9e35242429a47b1c550dce738933bbd1739d897 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_2069: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2069/
IGT_4716: 111593c49d812a4f4ff9ab0ef053a3ab88a6f73f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2069/shards.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