From: Matthew Brost <matthew.brost@intel.com>
To: Tejas Upadhyay <tejas.upadhyay@intel.com>
Cc: <intel-xe@lists.freedesktop.org>
Subject: Re: [PATCH V2] drm/xe: Dont skip TLB invalidations on VF
Date: Wed, 9 Jul 2025 22:03:26 -0700 [thread overview]
Message-ID: <aG9JnsplFWSaL6pW@lstrano-desk.jf.intel.com> (raw)
In-Reply-To: <20250710045945.1023840-1-tejas.upadhyay@intel.com>
On Thu, Jul 10, 2025 at 10:29:45AM +0530, Tejas Upadhyay wrote:
> Skipping TLB invalidations on VF causing unrecoverable
> faults. Probable reason for skipping TLB invalidations
> on SRIOV could be lack of support for instruction
> MI_FLUSH_DW_STORE_INDEX. Add back TLB flush with some
> additional handling.
>
> Helps in resolving,
> [ 704.913454] xe 0000:00:02.1: [drm:pf_queue_work_func [xe]]
> ASID: 0
> VFID: 0
> PDATA: 0x0d92
> Faulted Address: 0x0000000002fa0000
> FaultType: 0
> AccessType: 1
> FaultLevel: 0
> EngineClass: 3 bcs
> EngineInstance: 8
> [ 704.913551] xe 0000:00:02.1: [drm:pf_queue_work_func [xe]] Fault response: Unsuccessful -22
>
> V2:
> - Use Xmas tree (MichalW)
>
> Suggested-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> Fixes: 97515d0b3ed92 ("drm/xe/vf: Don't emit access to Global HWSP if VF")
> Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
> ---
> drivers/gpu/drm/xe/xe_ring_ops.c | 22 ++++++++++------------
> 1 file changed, 10 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
> index bc1689db4cd7..7b50c7c1ee21 100644
> --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> @@ -110,13 +110,14 @@ static int emit_bb_start(u64 batch_addr, u32 ppgtt_flag, u32 *dw, int i)
> return i;
> }
>
> -static int emit_flush_invalidate(u32 *dw, int i)
> +static int emit_flush_invalidate(u32 addr, u32 val, u32 *dw, int i)
> {
> dw[i++] = MI_FLUSH_DW | MI_INVALIDATE_TLB | MI_FLUSH_DW_OP_STOREDW |
> - MI_FLUSH_IMM_DW | MI_FLUSH_DW_STORE_INDEX;
> - dw[i++] = LRC_PPHWSP_FLUSH_INVAL_SCRATCH_ADDR;
> - dw[i++] = 0;
> + MI_FLUSH_IMM_DW;
> +
> + dw[i++] = addr | MI_FLUSH_DW_USE_GTT;
> dw[i++] = 0;
> + dw[i++] = val;
>
> return i;
> }
> @@ -397,23 +398,20 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
> static void emit_migration_job_gen12(struct xe_sched_job *job,
> struct xe_lrc *lrc, u32 seqno)
> {
> + u32 saddr = xe_lrc_start_seqno_ggtt_addr(lrc);
> u32 dw[MAX_JOB_SIZE_DW], i = 0;
>
> i = emit_copy_timestamp(lrc, dw, i);
>
> - i = emit_store_imm_ggtt(xe_lrc_start_seqno_ggtt_addr(lrc),
> - seqno, dw, i);
> + i = emit_store_imm_ggtt(saddr, seqno, dw, i);
>
> dw[i++] = MI_ARB_ON_OFF | MI_ARB_DISABLE; /* Enabled again below */
>
> i = emit_bb_start(job->ptrs[0].batch_addr, BIT(8), dw, i);
>
> - if (!IS_SRIOV_VF(gt_to_xe(job->q->gt))) {
> - /* XXX: Do we need this? Leaving for now. */
> - dw[i++] = preparser_disable(true);
> - i = emit_flush_invalidate(dw, i);
> - dw[i++] = preparser_disable(false);
> - }
> + dw[i++] = preparser_disable(true);
> + i = emit_flush_invalidate(saddr, seqno, dw, i);
> + dw[i++] = preparser_disable(false);
>
> i = emit_bb_start(job->ptrs[1].batch_addr, BIT(8), dw, i);
>
> --
> 2.34.1
>
next prev parent reply other threads:[~2025-07-10 5:02 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-10 4:59 [PATCH V2] drm/xe: Dont skip TLB invalidations on VF Tejas Upadhyay
2025-07-10 5:03 ` Matthew Brost [this message]
2025-07-10 5:06 ` ✓ CI.KUnit: success for drm/xe: Dont skip TLB invalidations on VF (rev2) Patchwork
2025-07-10 5:43 ` ✓ Xe.CI.BAT: " Patchwork
2025-07-10 6:51 ` ✗ Xe.CI.Full: failure " Patchwork
2025-07-10 10:56 ` Upadhyay, Tejas
2025-07-10 10:57 ` Upadhyay, Tejas
2025-07-10 17:28 ` Matthew Brost
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=aG9JnsplFWSaL6pW@lstrano-desk.jf.intel.com \
--to=matthew.brost@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=tejas.upadhyay@intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox