[Intel-xe] [PATCH] drm/xe: Drop EXECLIST_CONTROL from error state dump

Rodrigo Vivi rodrigo.vivi at intel.com
Thu Nov 9 20:27:47 UTC 2023


On Thu, Nov 09, 2023 at 11:46:07AM -0800, Matt Roper wrote:
> EXECLIST_CONTROL ($enginebase + 0x550) is a write-only register; we
> shouldn't be trying to read or report it as part of the device error
> state.
> 
> Bspec: 45910, 60335
> Cc: Rodrigo Vivi <rodrigo.vivi at intel.com>
> Signed-off-by: Matt Roper <matthew.d.roper at intel.com>

Reviewed-by: Rodrigo Vivi <rodrigo.vivi at intel.com>

> ---
>  drivers/gpu/drm/xe/xe_hw_engine.c       | 4 ----
>  drivers/gpu/drm/xe/xe_hw_engine_types.h | 2 --
>  2 files changed, 6 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_hw_engine.c b/drivers/gpu/drm/xe/xe_hw_engine.c
> index b5b084590888..e831e63c5e48 100644
> --- a/drivers/gpu/drm/xe/xe_hw_engine.c
> +++ b/drivers/gpu/drm/xe/xe_hw_engine.c
> @@ -704,8 +704,6 @@ xe_hw_engine_snapshot_capture(struct xe_hw_engine *hwe)
>  	snapshot->reg.ring_execlist_sq_contents_hi =
>  		hw_engine_mmio_read32(hwe,
>  				      RING_EXECLIST_SQ_CONTENTS_HI(0));
> -	snapshot->reg.ring_execlist_control =
> -		hw_engine_mmio_read32(hwe, RING_EXECLIST_CONTROL(0));
>  	snapshot->reg.ring_start = hw_engine_mmio_read32(hwe, RING_START(0));
>  	snapshot->reg.ring_head =
>  		hw_engine_mmio_read32(hwe, RING_HEAD(0)) & HEAD_ADDR;
> @@ -765,8 +763,6 @@ void xe_hw_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot,
>  		   snapshot->reg.ring_execlist_sq_contents_lo);
>  	drm_printf(p, "\tRING_EXECLIST_SQ_CONTENTS_HI: 0x%08x\n",
>  		   snapshot->reg.ring_execlist_sq_contents_hi);
> -	drm_printf(p, "\tRING_EXECLIST_CONTROL: 0x%08x\n",
> -		   snapshot->reg.ring_execlist_control);
>  	drm_printf(p, "\tRING_START: 0x%08x\n", snapshot->reg.ring_start);
>  	drm_printf(p, "\tRING_HEAD:  0x%08x\n", snapshot->reg.ring_head);
>  	drm_printf(p, "\tRING_TAIL:  0x%08x\n", snapshot->reg.ring_tail);
> diff --git a/drivers/gpu/drm/xe/xe_hw_engine_types.h b/drivers/gpu/drm/xe/xe_hw_engine_types.h
> index 5d4ee2904240..39908dec042a 100644
> --- a/drivers/gpu/drm/xe/xe_hw_engine_types.h
> +++ b/drivers/gpu/drm/xe/xe_hw_engine_types.h
> @@ -183,8 +183,6 @@ struct xe_hw_engine_snapshot {
>  		u32 ring_execlist_sq_contents_lo;
>  		/** @ring_execlist_sq_contents_hi: RING_EXECLIST_SQ_CONTENTS + 4 */
>  		u32 ring_execlist_sq_contents_hi;
> -		/** @ring_execlist_control: RING_EXECLIST_CONTROL */
> -		u32 ring_execlist_control;
>  		/** @ring_start: RING_START */
>  		u32 ring_start;
>  		/** @ring_head: RING_HEAD */
> -- 
> 2.41.0
> 


More information about the Intel-xe mailing list