From: "Leif Lindholm" <leif@nuviainc.com>
To: "brbarkel@microsoft.com" <bret@corthon.com>
Cc: devel@edk2.groups.io, Ard Biesheuvel <ardb+tianocore@kernel.org>,
Sean Brogan <sean.brogan@microsoft.com>
Subject: Re: [PATCH v2 11/16] ArmPkg: Add Basic MMU Lib for Arm silicon
Date: Thu, 4 Nov 2021 12:43:42 +0000 [thread overview]
Message-ID: <20211104124342.y3wkleuohac67p7a@leviathan> (raw)
In-Reply-To: <20211102201748.1963-12-brbarkel@microsoft.com>
On Tue, Nov 02, 2021 at 13:17:43 -0700, brbarkel@microsoft.com wrote:
> From: Sean Brogan <sean.brogan@microsoft.com>
>
> The previously Arm-specific "ArmMmuLib" has been generalized
> as "MmuLib". The Arm implementation of this lib can still use
> the existing library logic to back it.
>
> As such, this implementation is currently just a shim to the
> old library, while enabling higher-level code to be more
> common.
This commit message still required me to go and cross refecence a few
patches to (I think) understand what's going on.
(not least because it relies on a patch to MdePkg which I wasn't cc:d
on, so hadn't spotted.)
Correct me if I've got this wrong, but here's my theory:
- 8/16 adds a library class that currently basically amounts to an
unabstracted version of ArmMmuLib, but in MdePkg, minus the Arm
prefixes.
- 9/16 switches MdeModulePkg to use the new MmuLib instead of
ArmMmuLib.
- 10/16 does the same for StandaloneMmPkg.
- 11/16 adds an actual implementation of this library class under
ArmPkg - backed by ArmMmuLib.
If that's accurate...
Starting with the commit message - could we reduce the use of passive
voice a bit? Suggestion:
---
After adding the abstract MmuLib to MdePkg, add an implementation
backed by the existing ArmMmuLib to ArmPkg.
---
While not required functionality-wise, it would also feel more logical
to me to add the arch-specific implementation immediately after the
abstract version rather than a few patches down the set (kees the
reviewer in the same context).
/
Leif
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3651
>
> Cc: Leif Lindholm <leif@nuviainc.com>
> Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
> Cc: Sean Brogan <sean.brogan@microsoft.com>
> Signed-off-by: Bret Barkelew <bret.barkelew@microsoft.com>
> ---
> ArmPkg/Library/MmuLib/MmuLib.c | 120 ++++++++++++++++++++
> ArmPkg/ArmPkg.dsc | 1 +
> ArmPkg/Library/MmuLib/BaseMmuLib.inf | 30 +++++
> 3 files changed, 151 insertions(+)
>
> diff --git a/ArmPkg/Library/MmuLib/MmuLib.c b/ArmPkg/Library/MmuLib/MmuLib.c
> new file mode 100644
> index 000000000000..70840c26f489
> --- /dev/null
> +++ b/ArmPkg/Library/MmuLib/MmuLib.c
> @@ -0,0 +1,120 @@
> +/** @file
> +This library instance implements a very limited MMU Lib instance
> +for the ARM/AARCH64 architectures. This library shims a common library
> +interface to the ArmPkg defined ArmMmuLib.ib.
> +
> +Copyright (c) Microsoft Corporation.
> +SPDX-License-Identifier: BSD-2-Clause-Patent
> +
> +**/
> +
> +#include <Library/ArmMmuLib.h>
> +#include <Library/DebugLib.h>
> +#include <Library/MmuLib.h>
> +
> +/**
> + Bitwise sets the memory attributes on a range of memory based on an attributes mask.
> +
> + @param BaseAddress The start of the range for which to set attributes.
> + @param Length The length of the range.
> + @param Attributes A bitmask of the attributes to set. See "Physical memory
> + protection attributes" in UefiSpec.h
> +
> + @return EFI_SUCCESS
> + @return Others
> +
> +**/
> +EFI_STATUS
> +EFIAPI
> +MmuSetAttributes (
> + IN EFI_PHYSICAL_ADDRESS BaseAddress,
> + IN UINT64 Length,
> + IN UINT64 Attributes
> + )
> + {
> + EFI_STATUS Status;
> +
> + Status = EFI_UNSUPPORTED;
> +
> + if (Attributes & EFI_MEMORY_XP) {
> + Status = ArmSetMemoryRegionNoExec (BaseAddress, Length);
> + if (EFI_ERROR(Status)) {
> + DEBUG((DEBUG_ERROR, "%a - Failed to set NX. Status = %r\n", __FUNCTION__, Status));
> + }
> + }
> +
> + ASSERT_EFI_ERROR(Status);
> + return Status;
> + }
> +
> +
> +/**
> + Bitwise clears the memory attributes on a range of memory based on an attributes mask.
> +
> + @param BaseAddress The start of the range for which to clear attributes.
> + @param Length The length of the range.
> + @param Attributes A bitmask of the attributes to clear. See "Physical memory
> + protection attributes" in UefiSpec.h
> +
> + @return EFI_SUCCESS
> + @return Others
> +
> +**/
> +EFI_STATUS
> +EFIAPI
> +MmuClearAttributes (
> + IN EFI_PHYSICAL_ADDRESS BaseAddress,
> + IN UINT64 Length,
> + IN UINT64 Attributes
> + )
> + {
> + EFI_STATUS Status;
> +
> + Status = EFI_UNSUPPORTED;
> +
> + if (Attributes & EFI_MEMORY_XP) {
> + Status = ArmClearMemoryRegionNoExec (BaseAddress, Length);
> + if (EFI_ERROR(Status)) {
> + DEBUG((DEBUG_ERROR, "%a - Failed to clear NX. Status = %r\n", __FUNCTION__, Status));
> + }
> + }
> +
> + if (Attributes & EFI_MEMORY_RO) {
> + Status = ArmClearMemoryRegionReadOnly(BaseAddress, Length);
> + if (EFI_ERROR(Status)) {
> + DEBUG((DEBUG_ERROR, "%a - Failed to clear RO. Status = %r\n", __FUNCTION__, Status));
> + }
> + }
> +
> + ASSERT_EFI_ERROR(Status);
> + return Status;
> + }
> +
> +
> +/**
> + Returns the memory attributes on a range of memory.
> +
> + @param BaseAddress The start of the range for which to set attributes.
> + @param Attributes A return pointer for the attributes.
> +
> + @return EFI_SUCCESS
> + @return EFI_INVALID_PARAMETER A return pointer is NULL.
> + @return Others
> +
> +**/
> +EFI_STATUS
> +EFIAPI
> +MmuGetAttributes (
> + IN EFI_PHYSICAL_ADDRESS BaseAddress,
> + OUT UINT64 *Attributes
> + )
> + {
> + EFI_STATUS Status;
> +
> + Status = EFI_UNSUPPORTED;
> +
> + DEBUG ((DEBUG_ERROR, "%a() API not implemented\n", __FUNCTION__));
> +
> + ASSERT_EFI_ERROR(Status);
> + return Status;
> + }
> diff --git a/ArmPkg/ArmPkg.dsc b/ArmPkg/ArmPkg.dsc
> index 06ede068f99d..cbc67daa7696 100644
> --- a/ArmPkg/ArmPkg.dsc
> +++ b/ArmPkg/ArmPkg.dsc
> @@ -165,3 +165,4 @@ [Components.AARCH64]
>
> [Components.AARCH64, Components.ARM]
> ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf
> + ArmPkg/Library/MmuLib/BaseMmuLib.inf
> diff --git a/ArmPkg/Library/MmuLib/BaseMmuLib.inf b/ArmPkg/Library/MmuLib/BaseMmuLib.inf
> new file mode 100644
> index 000000000000..15095abee9c3
> --- /dev/null
> +++ b/ArmPkg/Library/MmuLib/BaseMmuLib.inf
> @@ -0,0 +1,30 @@
> +## @file
> +# This library instance implements a very limited MMU Lib instance
> +# for the ARM/AARCH64 architectures. This library shims a common library
> +# interface to the ArmPkg defined ArmMmuLib.
> +#
> +# Copyright (c) Microsoft Corporation.
> +#
> +# SPDX-License-Identifier: BSD-2-Clause-Patent
> +#
> +##
> +
> +[Defines]
> + INF_VERSION = 0x00010005
> + BASE_NAME = MmuLib
> + FILE_GUID = 6f2ee9a4-79b3-4b77-9a47-e2bd4b917b75
> + MODULE_TYPE = BASE
> + VERSION_STRING = 1.0
> + LIBRARY_CLASS = MmuLib
> +
> +[Sources]
> + MmuLib.c
> +
> +[Packages]
> + MdePkg/MdePkg.dec
> + MdeModulePkg/MdeModulePkg.dec
> + ArmPkg/ArmPkg.dec
> +
> +[LibraryClasses]
> + DebugLib
> + ArmMmuLib
> --
> 2.31.1.windows.1
>
next prev parent reply other threads:[~2021-11-04 12:43 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-02 20:17 [PATCH v2 00/16] Un-siloing Arm common code Bret Barkelew
2021-11-02 20:17 ` [PATCH v2 01/16] ArmPkg/ArmMmuBaseLib: Disallow STANDALONE_MM Bret Barkelew
2021-11-02 20:17 ` [PATCH v2 02/16] ArmPkg/ArmMmuStandaloneMmLib: Update to match ArmMmuLib Bret Barkelew
2021-11-04 12:14 ` Leif Lindholm
2021-11-02 20:17 ` [PATCH v2 03/16] ArmPkg/StandaloneMmCoreEntryPoint: Swap to ArmMmuLib Bret Barkelew
2021-11-02 20:17 ` [PATCH v2 04/16] ArmPkg: Disavow StandaloneMmMmuLib. It's just ArmMmuLib Bret Barkelew
2021-11-02 20:17 ` [PATCH v2 05/16] ArmPkg and MdePkg: Move the Arm CompilerIntrinsicsLib to MdePkg Bret Barkelew
2021-11-04 12:16 ` Leif Lindholm
2021-11-02 20:17 ` [PATCH v2 06/16] ArmPkg and BaseTools: Move the GccLto binaries from ArmPkg to BaseTools Bret Barkelew
2021-11-02 20:17 ` [PATCH v2 07/16] ArmPkg and MdePkg: Move the AsmMacroIoLib from ArmPkg to MdePkg Bret Barkelew
2021-11-04 12:17 ` Leif Lindholm
2021-11-05 5:12 ` 回复: [edk2-devel] " gaoliming
2021-11-02 20:17 ` [PATCH v2 08/16] MdePkg: Create the MMU access lib to abstract memory protection settings Bret Barkelew
2021-11-02 20:17 ` [PATCH v2 09/16] MdeModulePkg: Swap to MmuLib instead of Arm-specific lib Bret Barkelew
2021-11-02 20:17 ` [PATCH v2 10/16] StandaloneMmPkg: Switch to the MmuLib abstraction Bret Barkelew
2021-11-02 20:17 ` [PATCH v2 11/16] ArmPkg: Add Basic MMU Lib for Arm silicon Bret Barkelew
2021-11-04 12:43 ` Leif Lindholm [this message]
2021-11-10 20:39 ` Bret Barkelew
2021-11-02 20:17 ` [PATCH v2 12/16] ArmPkg: Move the StandaloneMmCpu driver to ArmPkg Bret Barkelew
2021-11-02 20:17 ` [PATCH v2 13/16] ArmPkg: Move the StandaloneMmCoreEntryPoint lib " Bret Barkelew
2021-11-02 20:17 ` [PATCH v2 14/16] ArmPkg/Library: Convert StandaloneMmCoreEntryPoint to Arm-only Bret Barkelew
2021-11-02 20:17 ` [PATCH v2 15/16] ArmPkg/ArmPkg.dsc: Resolve build errors resulting from package moves Bret Barkelew
2021-11-02 20:17 ` [PATCH v2 16/16] ArmPlatformPkg: " Bret Barkelew
2021-11-06 9:50 ` [edk2-devel] " Marvin Häuser
2021-11-08 19:25 ` [EXTERNAL] " Bret Barkelew
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211104124342.y3wkleuohac67p7a@leviathan \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox