[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v2 09/10] xen/arm: domain_build: adjust Dom0 IRQ handling to support eSPIs


  • To: Oleksandr Tyshchenko <olekstysh@xxxxxxxxx>, "xen-devel@xxxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxxx>
  • From: Leonid Komarianskyi <Leonid_Komarianskyi@xxxxxxxx>
  • Date: Sun, 24 Aug 2025 18:47:33 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=epam.com; dmarc=pass action=none header.from=epam.com; dkim=pass header.d=epam.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=MDfnx9kmCEvzJ4OYVjtCKr+h8z+Kbd3+sJ7+w+Jbum8=; b=qpnoTcNpn7BWLs4GPHD20ddtNvlkLFAMLGRoo4G7/IQYQqL9o1T9PwEp5a17x7CxqMlYZFqR7zXEAq9eLq5KNgL2fEvJfYc5cqmowFFsIpEe1mMvsFKeKub1v2oA7FdYiaDJ08GcB6D84oYBv4tajdn51TSUb9iJL4d+aDtYR8fQOVlzaUuV8d/4btdbAZf8/j6Wk9tjM7YNYzdwSFeLaj2snPOpVwbDBY70M1sZxizAk+3n6ki5g3Ls6QSTuKeKcexcKk02S2D9VU4U4RR9ecOaVolxG1z7RJmGriKt+N/Fg5XdKb3Cw6SfUpE7079Zlf32duk41FiQ79xUbW2qfA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=lY6WRTHUH2ukmQgKtR604Ab+u+PEX+iMSkAElh+sA+5tuNWq99e9QJTUVcMX8X5rU1roIWxfktNUxHxxuzw88Ns0mFrPGeNfJHcurEKEOzoHHMYdJB83MZlSV9Ovu5QhhViZCK2SlEUMdvpNgdvoryMcdtde94EPahy0OpC69GGAbmSKEueLDj1TKA+Nxau9qieXlmFBT6rYuEIjMOOdGuuSzFFOxur7jaamop8LWWgxLsggblBJjNxoAxeU3+Qyho2GCdTx3elTaxFQ/2fo+wEfC26HbGUtQqkRaDNgNn6kNVYE78SlIihbIdOnvAWa95p0164uyS4UZRVSShniNA==
  • Authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=epam.com;
  • Delivery-date: Sun, 24 Aug 2025 18:47:43 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
  • Thread-index: AQHcB5d9D2bB2ytT+0KvuTkMlpIiH7RwTReAgAHy1IA=
  • Thread-topic: [PATCH v2 09/10] xen/arm: domain_build: adjust Dom0 IRQ handling to support eSPIs

Hello Oleksandr,

Thank you for your question.

On 23.08.25 16:02, Oleksandr Tyshchenko wrote:
> [You don't often get email from olekstysh@xxxxxxxxx. Learn why this is 
> important at https://aka.ms/LearnAboutSenderIdentification ]
> 
> On 07.08.25 15:33, Leonid Komarianskyi wrote:
> 
> Hello Leonid
> 
>> The Dom0 configuration logic in create_dom0() has been updated
>> to account for extended SPIs when supported by the hardware and
>> enabled with CONFIG_GICV3_ESPI. These changes ensure the proper
>> calculation of the maximum number of SPIs and eSPIs available for Dom0.
>>
>> When eSPIs are supported by the hardware and CONFIG_GICV3_ESPI is
>> enabled, the maximum number of eSPI interrupts is calculated using
>> the ESPI_BASE_INTID offset (4096) and limited at 1024, with 32 IRQs
>> subtracted. To ensure compatibility with non-Dom0 domains, this
>> adjustment is applied by the toolstack during domain creation, while
>> for Dom0 it is handled directly during VGIC initialization. If eSPIs
>> are not supported, the calculation defaults to using the standard SPI
>> range, with a maximum value of 992 interrupt lines as it works now.
>>
>> Signed-off-by: Leonid Komarianskyi <leonid_komarianskyi@xxxxxxxx>
>>
>> ---
>> Changes in V2:
>> - no changes
>> ---
>>   xen/arch/arm/domain_build.c     | 10 ++++++++++
>>   xen/arch/arm/include/asm/vgic.h | 11 +++++++++++
>>   2 files changed, 21 insertions(+)
>>
>> diff --git a/xen/arch/arm/domain_build.c b/xen/arch/arm/domain_build.c
>> index d91a71acfd..fa5abf2dfb 100644
>> --- a/xen/arch/arm/domain_build.c
>> +++ b/xen/arch/arm/domain_build.c
>> @@ -2055,6 +2055,16 @@ void __init create_dom0(void)
>>       /* The vGIC for DOM0 is exactly emulating the hardware GIC */
>>       dom0_cfg.arch.gic_version = XEN_DOMCTL_CONFIG_GIC_NATIVE;
>>       dom0_cfg.arch.nr_spis = VGIC_DEF_NR_SPIS;
>> +#ifdef CONFIG_GICV3_ESPI
>> +    /*
>> +     * Check if the hardware supports extended SPIs (even if the 
>> appropriate config is set).
>> +     * If not, the common SPI range will be used. Otherwise overwrite 
>> the nr_spis with the
>> +     * maximum available INTID from eSPI range. In that case, the 
>> number of regular SPIs will
>> +     * be adjusted to the maximum value during vGIC initialization.
>> +     */
>> +    if ( gic_number_espis() > 0 )
>> +        dom0_cfg.arch.nr_spis = VGIC_DEF_NR_ESPIS;
>> +#endif
> 
> I might miss something, but within the whole series, you seem not to
> update "nr_spis" field for dom0less DomUs (in dom0less-build.c). Please
> clarify the reason?
> 

Yes, I missed this because I was mostly focused on the build (with Dom0) 
that I currently have on the platform with eSPI. I rechecked the code, 
and the dom0less code has the same behavior, so I believe it should work 
similarly with the same changes in arch_create_domUs. I will update it 
in V3.

>>       dom0_cfg.arch.tee_type = tee_get_type();
>>       dom0_cfg.max_vcpus = dom0_max_vcpus();
>>
> 
> [snip]

Best regards,
Leonid

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.