[Intel-gfx] [PATCH v2 3/4] drm/i915/gt: Re-work reset_csb

Bowman, Casey G casey.g.bowman at intel.com
Sat Jan 29 07:23:38 UTC 2022



> -----Original Message-----
> From: Cheng, Michael <michael.cheng at intel.com>
> Sent: Friday, January 28, 2022 2:10 PM
> To: intel-gfx at lists.freedesktop.org
> Cc: Cheng, Michael <michael.cheng at intel.com>; Bowman, Casey G
> <casey.g.bowman at intel.com>; De Marchi, Lucas
> <lucas.demarchi at intel.com>; Boyer, Wayne <wayne.boyer at intel.com>;
> ville.syrjala at linux.intel.com; Kuoppala, Mika <mika.kuoppala at intel.com>;
> Auld, Matthew <matthew.auld at intel.com>
> Subject: [PATCH v2 3/4] drm/i915/gt: Re-work reset_csb
> 
> Use drm_clflush_virt_range instead of directly invoking clflush. This will
> prevent compiler errors when building for non-x86 architectures.
> 
> Signed-off-by: Michael Cheng <michael.cheng at intel.com>
> ---
>  drivers/gpu/drm/i915/gt/intel_execlists_submission.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
> b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
> index 90b5daf9433d..e8a2e2683b81 100644
> --- a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
> +++ b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
> @@ -2951,6 +2951,8 @@ reset_csb(struct intel_engine_cs *engine, struct
> i915_request **inactive)
> 
>  	mb(); /* paranoia: read the CSB pointers from after the reset */
>  	clflush(execlists->csb_write);
> +	drm_clflush_virt_range(execlists->csb_write,
> +			sizeof(execlists->csb_write));

I only see the insertion of drm_clflush_virt_range() here, not the removal of the
clflush() call, which sounds like it's supposed to be replaced here, based on your
commit message.

>  	mb();
> 
>  	inactive = process_csb(engine, inactive); /* drain preemption events
> */
> --
> 2.25.1



More information about the Intel-gfx mailing list