public inbox for intel-xe@lists.freedesktop.org
 help / color / mirror / Atom feed
From: "Levi, Ilia" <ilia.levi@intel.com>
To: Michal Wajdeczko <michal.wajdeczko@intel.com>,
	<intel-xe@lists.freedesktop.org>
Subject: Re: [PATCH 10/13] drm/xe/memirq: Introduce helper to calculate status vector offset
Date: Tue, 5 May 2026 15:40:50 +0300	[thread overview]
Message-ID: <a9ddb48c-7c8a-419e-8a0a-1a10270eada9@intel.com> (raw)
In-Reply-To: <20260428142722.582-11-michal.wajdeczko@intel.com>

On 4/28/2026 5:27 PM, Michal Wajdeczko wrote:
> We already have XE_MEMIRQ_STATUS_OFFSET() macro, but it expects
> that instance parameter will separately prepared based on the
> MSI-X status. Add memirq_status_vector_offset() helper function
> that will take care of this and by using engine specific offset,
> return an offset to the engine's status vector bytes.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>

NIT: same as in previous patch regarding commit message.

> ---
>  drivers/gpu/drm/xe/xe_memirq.c | 18 +++++++++++++++---
>  1 file changed, 15 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_memirq.c b/drivers/gpu/drm/xe/xe_memirq.c
> index 113b792d373e..f5e139f4525b 100644
> --- a/drivers/gpu/drm/xe/xe_memirq.c
> +++ b/drivers/gpu/drm/xe/xe_memirq.c
> @@ -289,13 +289,25 @@ u32 xe_memirq_source_ptr(struct xe_memirq *memirq, struct xe_hw_engine *hwe)
>  	return __memirq_source_page(memirq, hwe->instance);
>  }
>  
> +/* Return: offset to the status vector used by the given @source's nth @instance */


The semantics of source & instance become somewhat complex. Or rather they already were, but
adding the term "source" makes it more pronounced. Perhaps we should consider modifying the addressing
scheme to (irq_page, irq_offset) and set hwe->irq_page in hw_engine_init_early(). 
This will alleviate the need of overriding the instance in those helper functions. 

For example for BCS2 engine we'll configure:
if (MSI-x)
    irq_page = 2, irq_offset = ilog2(INTR_BCS(0))
else
    irq_page = 0, irq_offset = ilog2(INTR_BCS(2))


- Ilia

> +static u32 memirq_status_vector_offset(struct xe_memirq *memirq, u16 source, u16 instance)
> +{
> +	memirq_assert(memirq, instance <= XE_HW_ENGINE_MAX_INSTANCE);
> +
> +	instance = hw_reports_to_instance_zero(memirq) ? instance : 0;
> +	return XE_MEMIRQ_STATUS_OFFSET(instance) + source * SZ_16;
> +}
> +
> +static u32 memirq_status_page_offset(struct xe_memirq *memirq, u16 instance)
> +{
> +	return memirq_status_vector_offset(memirq, 0, instance);
> +}
> +
>  static u32 __memirq_status_page(struct xe_memirq *memirq, u16 instance)
>  {
> -	memirq_assert(memirq, instance <= XE_HW_ENGINE_MAX_INSTANCE);
>  	memirq_assert(memirq, memirq->bo);
>  
> -	instance = hw_reports_to_instance_zero(memirq) ? instance : 0;
> -	return xe_bo_ggtt_addr(memirq->bo) + XE_MEMIRQ_STATUS_OFFSET(instance);
> +	return xe_bo_ggtt_addr(memirq->bo) + memirq_status_page_offset(memirq, instance);
>  }
>  
>  /**



  reply	other threads:[~2026-05-05 12:41 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-28 14:27 [PATCH 00/13] drm/xe/tests: Add kunit tests for memory based interrupts Michal Wajdeczko
2026-04-28 14:27 ` [PATCH 01/13] drm/xe/ggtt: Rename parameter name in xe_ggtt_init_kunit() Michal Wajdeczko
2026-04-29 20:29   ` Summers, Stuart
2026-04-30  8:32     ` Jani Nikula
2026-04-30 21:50       ` Summers, Stuart
2026-04-28 14:27 ` [PATCH 02/13] drm/xe/guc: Allow to replace xe_guc_irq_handler() with stub Michal Wajdeczko
2026-04-30  5:44   ` K V P, Satyanarayana
2026-04-28 14:27 ` [PATCH 03/13] drm/xe/hwe: Allow to replace xe_hw_engine_handle_irq() " Michal Wajdeczko
2026-04-30  5:47   ` K V P, Satyanarayana
2026-04-28 14:27 ` [PATCH 04/13] drm/xe/mmio: Allow to replace xe_mmio_read32|write32() " Michal Wajdeczko
2026-04-30  5:48   ` K V P, Satyanarayana
2026-04-28 14:27 ` [PATCH 05/13] drm/xe/kunit: Promote GGTT initialization to test_init() helper Michal Wajdeczko
2026-04-28 14:27 ` [PATCH 06/13] drm/xe/kunit: Promote fake BO activation " Michal Wajdeczko
2026-04-28 14:27 ` [PATCH 07/13] drm/xe/kunit: Activate empty MMIO stubs in test_init() Michal Wajdeczko
2026-04-28 14:27 ` [PATCH 08/13] drm/xe/memirq: Make page layout macros private Michal Wajdeczko
2026-05-05  7:54   ` Levi, Ilia
2026-04-28 14:27 ` [PATCH 09/13] drm/xe/memirq: Introduce helper to calculate source page offset Michal Wajdeczko
2026-05-05  8:27   ` Levi, Ilia
2026-04-28 14:27 ` [PATCH 10/13] drm/xe/memirq: Introduce helper to calculate status vector offset Michal Wajdeczko
2026-05-05 12:40   ` Levi, Ilia [this message]
2026-04-28 14:27 ` [PATCH 11/13] drm/xe/memirq: Refactor xe_memirq_hwe_handler Michal Wajdeczko
2026-05-05 12:46   ` Levi, Ilia
2026-04-28 14:27 ` [PATCH 12/13] drm/xe/memirq: Dump additional source pages if MSI-X Michal Wajdeczko
2026-05-05 13:12   ` Levi, Ilia
2026-04-28 14:27 ` [PATCH 13/13] drm/xe/tests: Add kunit tests for memory based interrupts Michal Wajdeczko
2026-04-28 16:33 ` ✗ CI.checkpatch: warning for " Patchwork
2026-04-28 16:35 ` ✓ CI.KUnit: success " Patchwork
2026-04-28 17:43 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-29  5:04 ` ✗ Xe.CI.FULL: failure " Patchwork

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=a9ddb48c-7c8a-419e-8a0a-1a10270eada9@intel.com \
    --to=ilia.levi@intel.com \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=michal.wajdeczko@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