From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 7F7397803E3 for ; Fri, 22 Sep 2023 14:50:46 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=7E9Bgoh7Z6Nzv1cH/AtkWBeZPvwEOuNncBPR+vn1bMk=; c=relaxed/simple; d=groups.io; h=Message-ID:Date:MIME-Version:User-Agent:Subject:To:Cc:References:From:In-Reply-To:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Language:Content-Type:Content-Transfer-Encoding; s=20140610; t=1695394245; v=1; b=WTHi7jLgt5uDFctq/CKGp5Kb40JSqrYyWEcMhJjJ7j86P4crrBRzb+qajGU4RL9Y5PGrmc3i mjbZp9bRZC/FxKXKFfpqggmL8375FDTHVNMsDSkSipmvVX1aFiKwV7CRear+Mqe2MVCHeOfxZ01 5U6cYU3mJdhQrlIl8XcyhH4I= X-Received: by 127.0.0.2 with SMTP id Ias7YY7687511xu1qHdxnyWs; Fri, 22 Sep 2023 07:50:45 -0700 X-Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.23354.1695394244385160971 for ; Fri, 22 Sep 2023 07:50:44 -0700 X-Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 2D5CBDA7; Fri, 22 Sep 2023 07:51:21 -0700 (PDT) X-Received: from [10.34.100.121] (e126645.nice.arm.com [10.34.100.121]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 9F6F33F5A1; Fri, 22 Sep 2023 07:50:42 -0700 (PDT) Message-ID: <0bba039c-5ea8-a9b0-d71b-97c76f8112ed@arm.com> Date: Fri, 22 Sep 2023 16:50:35 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.15.1 Subject: Re: [edk2-devel] [PATCH edk2-platforms v3 0/3] Platform/ARM: Add dynamic CPU node, TRBE & ETE support to FVP To: Sami Mujawar , devel@edk2.groups.io Cc: ardb+tianocore@kernel.org, thomas.abraham@arm.com, Anshuman.Khandual@arm.com, Matteo.Carlini@arm.com, Akanksha.Jain2@arm.com, Sibel.Allinson@arm.com, jeshuas@nvidia.com, nd@arm.com References: <20230922144123.41164-1-sami.mujawar@arm.com> From: "PierreGondois" In-Reply-To: <20230922144123.41164-1-sami.mujawar@arm.com> Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,pierre.gondois@arm.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: oasgWChHvHO2TixafQpK5Bj7x7686176AA= Content-Language: en-US Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=WTHi7jLg; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=arm.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io Hi Sami, Thanks for the update: Reviewed-by: Pierre Gondois Regards, Pierre On 9/22/23 16:41, Sami Mujawar wrote: > This patch series updates the FVP platform firmware > to add support for dynamically generating CPU nodes > in AML and also reports the TRBE interrupt in the > MADT GICC structure. The last patch in the series > enables support for adding an ETE device to the CPU > device nodes in AML. >=20 > This patch series depends on the edk2 patch series > at: https://edk2.groups.io/g/devel/message/108996 >=20 > Updates from v2 patch series: > - Fixed comment for patch 2/3 and 3/3 to remove > usage of magic numbers in feature detection code > by introducing helper functions in ArmLib (which > can be seen in patch 12/13 and 13/13 in the edk2 > patch series linked above) and using them instead. >=20 > Updates from v1 patch series: > - Fixed comment in patch 2/3 to specify the TRBE > interrupt as PPI 15. >=20 > The changes can be seen at: > https://github.com/samimujawar/edk2-platforms/tree/2620_ete_dev_fvp_v3 >=20 > Sami Mujawar (3): > Platform/ARM: Add dynamic CPU node generation for FVP > Platform/ARM: FVP: Specify TRBE interrupt in MADT GICC > Platform/ARM: FVP: Add ETE device if supported by FVP >=20 > Platform/ARM/VExpressPkg/ConfigurationManager/ConfigurationManagerDxe/A= slTables/Dsdt.asl | 38 +----------- > Platform/ARM/VExpressPkg/ConfigurationManager/ConfigurationManagerDxe/C= onfigurationManager.c | 64 +++++++++++++++++--- > Platform/ARM/VExpressPkg/ConfigurationManager/ConfigurationManagerDxe/C= onfigurationManager.h | 4 +- > Platform/ARM/VExpressPkg/ConfigurationManager/ConfigurationManagerDxe/C= onfigurationManagerDxe.inf | 3 +- > 4 files changed, 61 insertions(+), 48 deletions(-) >=20 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#109011): https://edk2.groups.io/g/devel/message/109011 Mute This Topic: https://groups.io/mt/101522378/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-