public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "gaoliming" <gaoliming@byosoft.com.cn>
To: <devel@edk2.groups.io>, <etienne.carriere@linaro.org>
Cc: "'Achin Gupta'" <achin.gupta@arm.com>,
	"'Ard Biesheuvel'" <ardb+tianocore@kernel.org>,
	"'Jiewen Yao'" <jiewen.yao@intel.com>,
	"'Leif Lindholm'" <leif@nuviainc.com>,
	"'Sami Mujawar'" <sami.mujawar@arm.com>,
	"'Sughosh Ganu'" <sughosh.ganu@linaro.org>
Subject: 回复: [edk2-devel] [PATCH 0/5] Arm 32bit support in StandaloveMm
Date: Thu, 6 May 2021 11:25:36 +0800	[thread overview]
Message-ID: <000e01d74227$7b1af140$7150d3c0$@byosoft.com.cn> (raw)
In-Reply-To: <20210504152048.8739-1-etienne.carriere@linaro.org>

Etienne:
  Can you submit one BZ (https://bugzilla.tianocore.org/) for this new
feature? 

Thanks
Liming
> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Etienne
> Carriere
> 发送时间: 2021年5月4日 23:21
> 收件人: devel@edk2.groups.io
> 抄送: Achin Gupta <achin.gupta@arm.com>; Ard Biesheuvel
> <ardb+tianocore@kernel.org>; Jiewen Yao <jiewen.yao@intel.com>; Leif
> Lindholm <leif@nuviainc.com>; Sami Mujawar <sami.mujawar@arm.com>;
> Sughosh Ganu <sughosh.ganu@linaro.org>; Etienne Carriere
> <etienne.carriere@linaro.org>
> 主题: [edk2-devel] [PATCH 0/5] Arm 32bit support in StandaloveMm
> 
> This series targets building StandaloneMM package for 32bit ARM
> architectures. The main parts of the changes move AArch64/*
> files to paths suitable for both 32bit and 64bit Arm machines.
> 
> Because these changes move file paths, some other edk2 related
> source trees must be updated. Up to my knowledge, only edk2-platforms
> and edk2-codereview must be synchronised. [1] shows the changes
> needed in edk2-platforms to synchronise with these changes.
> 
> I will post a patch series for edk2-platforms, including [1] and
> some other changes to allow building StandaloneMmPkg for 32bit Arm
> platforms.
> 
> This change is a resend of [2], rebased to latest master.
> 
> [1]
> https://github.com/etienne-lms/edk2-platforms/commit/becbd185167f6a115
> dbd3895bc6071ab04e44d9b
> [2] https://edk2.groups.io/g/devel/message/72834 (with 72835, 72836,
> 72837 and 72838)
> 
> Etienne Carriere (5):
>   ArmPkg/IndustryStandard: 32b/64b agnostic FF-A and Mm SVC IDs
>   ArmPkg: prepare 32bit ARM build of StandaloneMmPkg
>   GenGv: Arm: support images entered in Thumb mode
>   StandaloneMmPkg: fix pointer/int casts against 32bit architectures
>   StandaloneMmPkg: build for 32bit arm machines
> 
>  ArmPkg/ArmPkg.dec                             |  2 +-
>  ArmPkg/ArmPkg.dsc                             |  2 +-
>  .../MmCommunicationDxe/MmCommunication.c      |  2 +-
>  ArmPkg/Include/IndustryStandard/ArmFfaSvc.h   | 12 ++++++
>  ArmPkg/Include/IndustryStandard/ArmMmSvc.h    | 15 ++++++++
>  .../{AArch64 => }/ArmMmuStandaloneMmLib.c     | 15 ++++----
>  .../ArmMmuStandaloneMmLib.inf                 |  6 +--
>  BaseTools/Source/C/GenFv/GenFvInternalLib.c   | 38
> ++++++++++++++-----
>  StandaloneMmPkg/Core/StandaloneMmCore.inf     |  2 +-
>  .../{AArch64 => }/EventHandle.c               | 12 +++++-
>  .../{AArch64 => }/StandaloneMmCpu.c           | 10 ++---
>  .../{AArch64 => }/StandaloneMmCpu.h           |  0
>  .../{AArch64 => }/StandaloneMmCpu.inf         |  0
>  .../StandaloneMmCoreEntryPoint.h              |  0
>  .../{AArch64 => Arm}/CreateHobList.c          | 16 ++++----
>  .../{AArch64 => Arm}/SetPermissions.c         |  2 +-
>  .../StandaloneMmCoreEntryPoint.c              | 18 ++++-----
>  .../StandaloneMmCoreEntryPoint.inf            | 14 +++----
>  .../{AArch64 => Arm}/StandaloneMmCoreHobLib.c |  0
>  .../StandaloneMmCoreHobLibInternal.c          |  0
>  .../StandaloneMmCoreHobLib.inf                |  8 ++--
>  ...rnal.c => ArmStandaloneMmMemLibInternal.c} |  9 ++++-
>  .../StandaloneMmMemLib/StandaloneMmMemLib.inf |  6 +--
>  .../VariableMmDependency.inf                  |  2 +-
>  StandaloneMmPkg/StandaloneMmPkg.dsc           |  8 ++--
>  25 files changed, 131 insertions(+), 68 deletions(-)
>  rename ArmPkg/Library/StandaloneMmMmuLib/{AArch64
> => }/ArmMmuStandaloneMmLib.c (92%)
>  rename StandaloneMmPkg/Drivers/StandaloneMmCpu/{AArch64
> => }/EventHandle.c (92%)
>  rename StandaloneMmPkg/Drivers/StandaloneMmCpu/{AArch64
> => }/StandaloneMmCpu.c (94%)
>  rename StandaloneMmPkg/Drivers/StandaloneMmCpu/{AArch64
> => }/StandaloneMmCpu.h (100%)
>  rename StandaloneMmPkg/Drivers/StandaloneMmCpu/{AArch64
> => }/StandaloneMmCpu.inf (100%)
>  rename StandaloneMmPkg/Include/Library/{AArch64 =>
> Arm}/StandaloneMmCoreEntryPoint.h (100%)
>  rename
> StandaloneMmPkg/Library/StandaloneMmCoreEntryPoint/{AArch64 =>
> Arm}/CreateHobList.c (91%)
>  rename
> StandaloneMmPkg/Library/StandaloneMmCoreEntryPoint/{AArch64 =>
> Arm}/SetPermissions.c (96%)
>  rename
> StandaloneMmPkg/Library/StandaloneMmCoreEntryPoint/{AArch64 =>
> Arm}/StandaloneMmCoreEntryPoint.c (94%)
>  rename StandaloneMmPkg/Library/StandaloneMmCoreHobLib/{AArch64 =>
> Arm}/StandaloneMmCoreHobLib.c (100%)
>  rename StandaloneMmPkg/Library/StandaloneMmCoreHobLib/{AArch64 =>
> Arm}/StandaloneMmCoreHobLibInternal.c (100%)
>  rename
> StandaloneMmPkg/Library/StandaloneMmMemLib/{AArch64/StandaloneMm
> MemLibInternal.c => ArmStandaloneMmMemLibInternal.c} (86%)
> 
> --
> 2.17.1
> 
> 
> 
> 
> 




  parent reply	other threads:[~2021-05-06  3:26 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-04 15:20 [PATCH 0/5] Arm 32bit support in StandaloveMm Etienne Carriere
2021-05-04 15:20 ` [PATCH 1/5] ArmPkg/IndustryStandard: 32b/64b agnostic FF-A and Mm SVC IDs Etienne Carriere
2021-05-11 18:43   ` Sami Mujawar
2021-05-04 15:20 ` [PATCH 2/5] ArmPkg: prepare 32bit ARM build of StandaloneMmPkg Etienne Carriere
2021-05-11 18:45   ` Sami Mujawar
2021-05-04 15:20 ` [PATCH 3/5] GenGv: Arm: support images entered in Thumb mode Etienne Carriere
2021-05-10 15:54   ` Ard Biesheuvel
2021-05-11 19:13   ` Sami Mujawar
2021-05-04 15:20 ` [PATCH 4/5] StandaloneMmPkg: fix pointer/int casts against 32bit architectures Etienne Carriere
2021-05-05  2:10   ` [edk2-devel] " Yao, Jiewen
2021-05-10 15:50     ` Ard Biesheuvel
2021-05-11 19:14   ` Sami Mujawar
2021-05-04 15:20 ` [PATCH 5/5] StandaloneMmPkg: build for 32bit arm machines Etienne Carriere
2021-05-11 19:18   ` Sami Mujawar
2021-05-12 10:01     ` Etienne Carriere
2021-05-06  3:25 ` gaoliming [this message]
2021-05-06  6:44   ` [edk2-devel] [PATCH 0/5] Arm 32bit support in StandaloveMm Etienne Carriere

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='000e01d74227$7b1af140$7150d3c0$@byosoft.com.cn' \
    --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