From: Rodrigo Vivi <rodrigo.vivi@intel.com>
To: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>,
Francois Dugast <francois.dugast@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: Re: [igt-dev] [PATCH i-g-t] lib/xe: on xe driver use blitter for x-tile
Date: Fri, 22 Sep 2023 17:47:39 -0400 [thread overview]
Message-ID: <ZQ4Le0BbHvdoAZZJ@intel.com> (raw)
In-Reply-To: <20230921163530.285456-1-juhapekka.heikkila@gmail.com>
On Thu, Sep 21, 2023 at 07:35:30PM +0300, Juha-Pekka Heikkila wrote:
> on xe driver need to use blitter for x-tile
While testing the xe-uapi alignment series I noticed the pass rate had sunk.
And then noticed it was all related to display and blit.
A bisect in kernel and in igt brought me to this patch as the culprit for
the craches I was seeing on DG2.
And it looks CI is also not very happy:
https://intel-gfx-ci.01.org/tree/intel-xe/index.html?
and my bet is on this patch here.
kms_cursor_legacy
6/6 6/6 6/6 6/6 6/6 6/6 6/6 0/6
basic-flip-after-cursor-atomic
pass pass pass pass pass pass pass crash
basic-flip-after-cursor-legacy
pass pass pass pass pass pass pass crash
basic-flip-after-cursor-varying-size
pass pass pass pass pass pass pass crash
basic-flip-before-cursor-atomic
pass pass pass pass pass pass pass crash
basic-flip-before-cursor-legacy
pass pass pass pass pass pass pass crash
basic-flip-before-cursor-varying-size
pass pass pass pass pass pass pass crash
kms_dsc
0/0 0/0 0/0 0/0 0/0 0/0 0/0 0/0
dsc-basic
skip skip skip skip notrun skip skip skip
kms_flip
16/16 16/16 16/16 16/16 16/16 16/16 16/16 0/16
basic-flip-vs-dpms
0/0 0/0 0/0 0/0 0/0 0/0 0/0 0/0
a-dp2
pass pass pass pass pass pass pass crash
b-dp2
pass pass pass pass pass pass pass crash
c-dp2
pass pass pass pass pass pass pass crash
d-dp2
pass pass pass pass pass pass pass crash
basic-flip-vs-modeset
0/0 0/0 0/0 0/0 0/0 0/0 0/0 0/0
a-dp2
pass pass pass pass pass pass pass crash
b-dp2
pass pass pass pass pass pass pass crash
c-dp2
pass pass pass pass pass pass pass crash
d-dp2
pass pass pass pass pass pass pass crash
basic-flip-vs-wf_vblank
0/0 0/0 0/0 0/0 0/0 0/0 0/0 0/0
a-dp2
pass pass pass pass pass pass pass crash
b-dp2
pass pass pass pass pass pass pass crash
c-dp2
pass pass pass pass pass pass pass crash
d-dp2
pass pass pass pass pass pass pass crash
basic-plain-flip
0/0 0/0 0/0 0/0 0/0 0/0 0/0 0/0
a-dp2
pass pass pass pass pass pass pass crash
b-dp2
pass pass pass pass pass pass pass crash
c-dp2
pass pass pass pass pass pass pass crash
d-dp2
pass pass pass pass pass pass pass crash
Results for igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size
Overview
Result: crash
Back to summary
Details
Detail Value
Returncode None
Time 0:00:00
Stdout
Opened device: /dev/dri/card0
Starting subtest: basic-flip-before-cursor-varying-size
Using pipe A & DP-2
Subtest basic-flip-before-cursor-varying-size: CRASH (0.705s)
Stderr
Starting subtest: basic-flip-before-cursor-varying-size
Received signal SIGBUS.
Stack trace:
#0 [fatal_sig_handler+0x17b]
#1 [__sigaction+0x50]
#2 [emit_blt_block_copy+0x47e]
#3 [blt_block_copy+0xeb]
#4 [blitcopy+0x263]
#5 [setup_linear_mapping+0x163]
#6 [create_cairo_surface__gpu+0x32]
#7 [igt_get_cairo_surface+0x88]
#8 [igt_get_cairo_ctx+0xb]
#9 [igt_create_pattern_fb+0x29]
#10 [set_fb_on_crtc+0x39]
#11 [basic_flip_cursor+0xcf]
#12 [__igt_unique____real_main1887+0xa41]
#13 [main+0x23]
#14 [__libc_start_call_main+0x80]
#15 [__libc_start_main+0x89]
#16 [_start+0x25]
Subtest basic-flip-before-cursor-varying-size: CRASH (0.705s)
Command
dmesg
<6> [29102.951496] [IGT] kms_cursor_legacy: executing
<6> [29103.289314] [IGT] kms_cursor_legacy: starting subtest basic-flip-before-cursor-varying-size
<6> [29104.003123] [IGT] kms_cursor_legacy: finished subtest basic-flip-before-cursor-varying-size, CRASH
<6> [29104.012383] [IGT] kms_cursor_legacy: exiting, ret=135
>
> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> ---
> lib/igt_fb.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/lib/igt_fb.c b/lib/igt_fb.c
> index 4b592825d..c8a7b31a8 100644
> --- a/lib/igt_fb.c
> +++ b/lib/igt_fb.c
> @@ -2557,7 +2557,8 @@ static bool use_blitter(const struct igt_fb *fb)
> return fb->modifier == I915_FORMAT_MOD_4_TILED ||
> fb->modifier == I915_FORMAT_MOD_Y_TILED ||
> fb->modifier == I915_FORMAT_MOD_Yf_TILED ||
> - (is_i915_device(fb->fd) && !gem_has_mappable_ggtt(fb->fd));
> + (is_i915_device(fb->fd) && !gem_has_mappable_ggtt(fb->fd)) ||
> + is_xe_device(fb->fd);
> }
>
> static void init_buf_ccs(struct intel_buf *buf, int ccs_idx,
> --
> 2.25.1
>
next prev parent reply other threads:[~2023-09-22 21:47 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-21 16:35 [igt-dev] [PATCH i-g-t] lib/xe: on xe driver use blitter for x-tile Juha-Pekka Heikkila
2023-09-21 17:28 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork
2023-09-21 17:36 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-09-22 4:54 ` [igt-dev] [PATCH i-g-t] " Sharma, Swati2
2023-09-22 10:32 ` Juha-Pekka Heikkila
2023-09-22 8:01 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
2023-09-22 21:47 ` Rodrigo Vivi [this message]
2023-09-25 8:02 ` [igt-dev] [PATCH i-g-t] " Juha-Pekka Heikkila
2023-09-25 13:37 ` Rodrigo Vivi
2023-09-25 15:18 ` Juha-Pekka Heikkila
2023-09-25 17:42 ` Rodrigo Vivi
2023-09-25 20:52 ` Rodrigo Vivi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZQ4Le0BbHvdoAZZJ@intel.com \
--to=rodrigo.vivi@intel.com \
--cc=francois.dugast@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=juhapekka.heikkila@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.