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 8E0F721B02822 for ; Tue, 27 Nov 2018 00:36:08 -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 5478434FE; Tue, 27 Nov 2018 00:36:08 -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 093423F5AF; Tue, 27 Nov 2018 00:36:05 -0800 (PST) Received: by a074948-lin.blr.arm.com (sSMTP sendmail emulation); Tue, 27 Nov 2018 14:06:03 +0530 Date: Tue, 27 Nov 2018 14:06:03 +0530 From: Sughosh Ganu To: Ard Biesheuvel Cc: "edk2-devel@lists.01.org" , Leif Lindholm , Achin Gupta Message-ID: <20181127083603.GA27029@arm.com> References: <1543299564-25266-1-git-send-email-sughosh.ganu@arm.com> <1543299564-25266-6-git-send-email-sughosh.ganu@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 08:36:08 -0000 X-List-Received-Date: Tue, 27 Nov 2018 08:36:08 -0000 X-List-Received-Date: Tue, 27 Nov 2018 08:36:08 -0000 X-List-Received-Date: Tue, 27 Nov 2018 08:36:08 -0000 X-List-Received-Date: Tue, 27 Nov 2018 08:36:08 -0000 X-List-Received-Date: Tue, 27 Nov 2018 08:36:08 -0000 X-List-Received-Date: Tue, 27 Nov 2018 08:36:08 -0000 X-List-Received-Date: Tue, 27 Nov 2018 08:36:08 -0000 X-List-Received-Date: Tue, 27 Nov 2018 08:36:08 -0000 X-List-Received-Date: Tue, 27 Nov 2018 08:36:08 -0000 X-List-Received-Date: Tue, 27 Nov 2018 08:36:08 -0000 X-List-Received-Date: Tue, 27 Nov 2018 08:36:08 -0000 X-List-Received-Date: Tue, 27 Nov 2018 08:36:08 -0000 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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. -sughosh