From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=217.140.101.70; helo=foss.arm.com; envelope-from=sughosh.ganu@arm.com; receiver=edk2-devel@lists.01.org Received: from foss.arm.com (foss.arm.com [217.140.101.70]) by ml01.01.org (Postfix) with ESMTP id BE00921191F59 for ; Sun, 18 Nov 2018 21:00:50 -0800 (PST) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 6F00E1596; Sun, 18 Nov 2018 21:00:50 -0800 (PST) Received: from a074948-lin.blr.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.72.51.249]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 21FFB3F5A0; Sun, 18 Nov 2018 21:00:47 -0800 (PST) Received: by a074948-lin.blr.arm.com (sSMTP sendmail emulation); Mon, 19 Nov 2018 10:30:45 +0530 Date: Mon, 19 Nov 2018 10:30:45 +0530 From: Sughosh Ganu To: ard.biesheuvel@linaro.org, leif.lindholm@linaro.org Cc: edk2-devel@lists.01.org, achin.gupta@arm.com Message-ID: <20181119050045.GA4937@arm.com> References: <1540452759-4875-1-git-send-email-sughosh.ganu@arm.com> MIME-Version: 1.0 In-Reply-To: <1540452759-4875-1-git-send-email-sughosh.ganu@arm.com> User-Agent: Mutt/1.5.24 (2015-08-30) Subject: Re: [PATCH v3 0/6] ArmPkg related changes for StandaloneMM package X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Nov 2018 05:00:50 -0000 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline hi Ard, On Thu Oct 25, 2018 at 01:02:33PM +0530, Sughosh Ganu wrote: > The following patch series adds support for Management Mode related > changes for aarch64 based platforms. > > Changes since v2: > Based on review comments from Ard, moved the memory attribute updation > changes out of DebugPeCoffExtraActionLib into an extra action library > added in StandaloneMM package. The patch for setting the memory > attributes, now under StandaloneMmPkg directory, will be submitted > separately from this series. Can you please review the V3 of this series. Based on your review comments, i have moved the memory attribute updation into an extra action lib added under StandaloneMmPkg. Can you please check if these updated patches for ArmPkg[1] and the one under StandaloneMmPkg[2] are fine. I had put you and Leif on Cc while sending out the patches, but i think that the mailserver deleted those, which is why you may have missed the patches. -sughosh [1] - https://lists.01.org/pipermail/edk2-devel/2018-October/031377.html [2] - https://lists.01.org/pipermail/edk2-devel/2018-October/031384.html > > > Achin Gupta (5): > ArmPkg: Add PCDs needed for MM communication driver. > ArmPkg/Drivers: Add EFI_MM_COMMUNICATION_PROTOCOL DXE driver. > ArmPkg/Include: Add MM interface SVC return codes. > ArmPkg/ArmMmuLib: Add MMU Library suitable for use in S-EL0. > ArmPkg/ArmMmuLib: Add MMU library inf file suitable for use in S-EL0. > > Sughosh Ganu (1): > ArmPkg/Include: Fix the SPM version SVC ID > > ArmPkg/ArmPkg.dec | 3 + > ArmPkg/Drivers/MmCommunicationDxe/MmCommunication.inf | 56 +++ > ArmPkg/Library/ArmMmuLib/{ArmMmuPeiLib.inf => ArmMmuStandaloneMmCoreLib.inf} | 23 +- > ArmPkg/Drivers/MmCommunicationDxe/MmCommunicate.h | 28 ++ > ArmPkg/Include/IndustryStandard/ArmMmSvc.h | 9 +- > ArmPkg/Drivers/MmCommunicationDxe/MmCommunication.c | 395 ++++++++++++++++++++ > ArmPkg/Library/ArmMmuLib/AArch64/ArmMmuStandaloneMmCoreLib.c | 204 ++++++++++ > 7 files changed, 704 insertions(+), 14 deletions(-) > create mode 100644 ArmPkg/Drivers/MmCommunicationDxe/MmCommunication.inf > copy ArmPkg/Library/ArmMmuLib/{ArmMmuPeiLib.inf => ArmMmuStandaloneMmCoreLib.inf} (51%) > create mode 100644 ArmPkg/Drivers/MmCommunicationDxe/MmCommunicate.h > create mode 100644 ArmPkg/Drivers/MmCommunicationDxe/MmCommunication.c > create mode 100644 ArmPkg/Library/ArmMmuLib/AArch64/ArmMmuStandaloneMmCoreLib.c > > -- > 2.7.4 > > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel -- -sughosh