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 (usa-sjc-mx-foss1.foss.arm.com [217.140.101.70]) by ml01.01.org (Postfix) with ESMTP id EAE6D2194D387 for ; Tue, 27 Nov 2018 01:58:48 -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 B32EC3563; Tue, 27 Nov 2018 01:58:48 -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 6CEB63F575; Tue, 27 Nov 2018 01:58:46 -0800 (PST) Received: by a074948-lin.blr.arm.com (sSMTP sendmail emulation); Tue, 27 Nov 2018 15:28:43 +0530 Date: Tue, 27 Nov 2018 15:28:43 +0530 From: Sughosh Ganu To: Ard Biesheuvel Cc: "edk2-devel@lists.01.org" , Leif Lindholm , Achin Gupta Message-ID: <20181127095843.GC27029@arm.com> References: <1543299564-25266-1-git-send-email-sughosh.ganu@arm.com> <1543299564-25266-6-git-send-email-sughosh.ganu@arm.com> <20181127083603.GA27029@arm.com> <20181127085021.GB27029@arm.com> MIME-Version: 1.0 In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Subject: Re: [PATCH v4 5/5] ArmPkg/ArmMmuLib: Add MMU Library suitable for use in S-EL0. 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: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 X-List-Received-Date: Tue, 27 Nov 2018 09:58:49 -0000 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue Nov 27, 2018 at 10:28:50AM +0100, Ard Biesheuvel wrote: > On Tue, 27 Nov 2018 at 09:50, Sughosh Ganu wrote: > > > > On Tue Nov 27, 2018 at 09:38:24AM +0100, Ard Biesheuvel wrote: > > > On Tue, 27 Nov 2018 at 09:36, Sughosh Ganu wrote: > > > > > > > > hi Ard, > > > > > > > > On Tue Nov 27, 2018 at 09:14:52AM +0100, Ard Biesheuvel wrote: > > > > > On Tue, 27 Nov 2018 at 07:20, Sughosh Ganu wrote: > > > > > > > > > > > > From: Achin Gupta > > > > > > > > > > > > The Standalone MM environment runs in S-EL0 in AArch64 on ARM Standard > > > > > > Platforms. Privileged firmware e.g. ARM Trusted Firmware sets up its > > > > > > architectural context including the initial translation tables for the > > > > > > S-EL1/EL0 translation regime. The MM environment will still request ARM > > > > > > TF to change the memory attributes of memory regions during > > > > > > initialization. > > > > > > > > > > > > The Standalone MM image is a FV that encapsulates the MM foundation > > > > > > and drivers. These are PE-COFF images with data and text segments. > > > > > > To initialise the MM environment, Arm Trusted Firmware has to create > > > > > > translation tables with sane default attributes for the memory > > > > > > occupied by the FV. This library sends SVCs to ARM Trusted Firmware > > > > > > to request memory permissions change for data and text segments. > > > > > > > > > > > > This patch adds a simple MMU library suitable for execution in S-EL0 and > > > > > > requesting memory permissions change operations from Arm Trusted Firmware. > > > > > > > > > > > > Contributed-under: TianoCore Contribution Agreement 1.1 > > > > > > Signed-off-by: Sughosh Ganu > > > > > > --- > > > > > > ArmPkg/ArmPkg.dec | 1 + > > > > > > ArmVirtPkg/Library/XenArmGenericTimerVirtCounterLib/XenArmGenericTimerVirtCounterLib.inf => ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf | 23 +-- > > > > > > ArmPkg/Include/Library/{ArmMmuLib.h => StandaloneMmMmuLib.h} | 38 +--- > > > > > > ArmPkg/Library/StandaloneMmMmuLib/Aarch64/ArmMmuStandaloneMmLib.c | 185 ++++++++++++++++++++ > > > > > > 4 files changed, 203 insertions(+), 44 deletions(-) > > > > > > > > > > > > > > > > > > > > > > +#endif /* __STANDALONEMM_MMU_LIB__ */ > > > > > > diff --git a/ArmPkg/Library/StandaloneMmMmuLib/Aarch64/ArmMmuStandaloneMmLib.c b/ArmPkg/Library/StandaloneMmMmuLib/Aarch64/ArmMmuStandaloneMmLib.c > > > > > > new file mode 100644 > > > > > > index 000000000000..d7d87b7d5d69 > > > > > > --- /dev/null > > > > > > +++ b/ArmPkg/Library/StandaloneMmMmuLib/Aarch64/ArmMmuStandaloneMmLib.c > > > > > > @@ -0,0 +1,185 @@ > > > > > > +/** @file > > > > > > +* File managing the MMU for ARMv8 architecture in S-EL0 > > > > > > +* > > > > > > +* Copyright (c) 2017 - 2018, ARM Limited. All rights reserved. > > > > > > +* > > > > > > +* This program and the accompanying materials > > > > > > +* are licensed and made available under the terms and conditions of the BSD License > > > > > > +* which accompanies this distribution. The full text of the license may be found at > > > > > > +* http://opensource.org/licenses/bsd-license.php > > > > > > +* > > > > > > +* THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, > > > > > > +* WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. > > > > > > +* > > > > > > +**/ > > > > > > + > > > > > > +#include > > > > > > +#include > > > > > > > > > > Why do you need this include? If you can drop it, can you also make > > > > > the library generic (i.e., supporting ARM as well as AArch64) ? > > > > > > > > > > (apologies for not spotting this before) > > > > > > > > I can remove the header file if it is superfluous. But regarding your > > > > comment on making this code generic for Arm as well, i guess we > > > > can work on refactoring the code when/if we actually require to > > > > support this on Arm. I am not sure if we are going to have a use-case > > > > for StandaloneMM on Arm. Currently, we are only supporting it on > > > > Aarch64 based platforms. Is that fine. Please let me know. Thanks. > > > > > > > > > > I'd strongly prefer this code to be generic if you are not using any > > > AArch64 specific facilities. > > > > > > AFAICT, we'd simply need to move the file out of the AArch64 directory > > > and rename [Sources.AARCH64] to [Sources] in the .inf file if the > > > header dependency is indeed superfluous. > > > > There are a couple of places where we use something like > > ARM_SVC_ID_SP_GET_MEM_ATTRIBUTES_AARCH64. Apart from this, it is > > generic. > > > > And how do these deviate from their AArch32 counterparts? ARM_SVC_ID_SP_GET_MEM_ATTRIBUTES_AARCH64 is passing a SMC64 based smc call as an argument to S-EL1 shim layer, which will subsequently make an smc call. We have a couple of functions (GetMemoryPermissions and RequestMemoryPermissionChange) which are passing these SMC64 based smc id's. I believe we would be required to define separate Function Id's for Arm. Hence we would still be required to have these functions defined under an Aarch64 directory. > > I agree that ARM support is not essential right now, or perhaps never. > But I would like to understand the differences before I sign off on > this. Ok. I understand your argument to make this generic, but given that it mostly would never be used on 32-bit Arm platforms, i thought we can make these changes when we have that scenario. But if you insist, i will make the changes. Please let me know. Thanks. -sughosh