public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "gaoliming via groups.io" <gaoliming=byosoft.com.cn@groups.io>
To: <devel@edk2.groups.io>, <suqiangx.ren@intel.com>
Cc: "'Michael D Kinney'" <michael.d.kinney@intel.com>,
	"'Zhiguang Liu'" <zhiguang.liu@intel.com>,
	"'Leif Lindholm'" <quic_llindhol@quicinc.com>,
	"'Ard Biesheuvel'" <ardb+tianocore@kernel.org>,
	"'Abner Chang'" <abner.chang@amd.com>,
	"'Jiewen Yao'" <jiewen.yao@intel.com>,
	"'Laszlo Ersek'" <lersek@redhat.com>
Subject: 回复: [edk2-devel] [PATCH V2 0/5] Add EFI_UNSUPPORTED return for some Runtime Service functions
Date: Tue, 30 Jan 2024 09:36:24 +0800	[thread overview]
Message-ID: <03dc01da531c$bccaadc0$36600940$@byosoft.com.cn> (raw)
In-Reply-To: <cover.1706493767.git.suqiangx.ren@intel.com>

The change is good to me. Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>

> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Ren, Suqiang
> 发送时间: 2024年1月29日 10:30
> 收件人: devel@edk2.groups.io
> 抄送: Michael D Kinney <michael.d.kinney@intel.com>; Liming Gao
> <gaoliming@byosoft.com.cn>; Zhiguang Liu <zhiguang.liu@intel.com>; Leif
> Lindholm <quic_llindhol@quicinc.com>; Ard Biesheuvel
> <ardb+tianocore@kernel.org>; Abner Chang <abner.chang@amd.com>;
> Jiewen Yao <jiewen.yao@intel.com>; Laszlo Ersek <lersek@redhat.com>
> 主题: [edk2-devel] [PATCH V2 0/5] Add EFI_UNSUPPORTED return for some
> Runtime Service functions
> 
> According to UEFI Spec 2.10 page 206, if any EFI_RUNTIME_SERVICES* calls
> are not supported for use by the OS at runtime, an
> EFI_RT_PROPERTIES_TABLE
> configuration table should be published describing which runtime services
> are supported at runtime. So need to add EFI_UNSUPPORTED return for some
> Runtime Service functions.
> 
> REF: UEFI spec 2.10 section 8 Services — Runtime Services
> 
> V2:
> Update some Runtime Service functions header return
> on both C and H header files.
> 
> V1:
> Add EFI_UNSUPPORTED return for some Runtime Service
> functions on UefiSpec.h file.
> 
> Signed-off-by: Suqiang Ren <suqiangx.ren@intel.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Zhiguang Liu <zhiguang.liu@intel.com>
> Cc: Leif Lindholm <quic_llindhol@quicinc.com>
> Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
> Cc: Abner Chang <abner.chang@amd.com>
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Laszlo Ersek <lersek@redhat.com>
> 
> Suqiang Ren (5):
>   MdePkg: Add EFI_UNSUPPORTED return for some Runtime Service
> functions
>   MdeModulePkg: Update some Runtime Service functions header
>   EmbeddedPkg: Update some Runtime Service functions header
>   ArmPlatformPkg: Update some Runtime Service functions header
>   OvmfPkg: Update some Runtime Service functions header
> 
>  .../PL031RealTimeClockLib.c                   | 22 ++++-
>  .../Include/Library/RealTimeClockLib.h        | 21 +++-
>  .../RealTimeClockRuntimeDxe/RealTimeClock.c   | 13 ++-
>  MdeModulePkg/Core/RuntimeDxe/Runtime.c        | 10 +-
>  MdeModulePkg/Core/RuntimeDxe/Runtime.h        | 10 +-
>  .../CapsuleRuntimeDxe/CapsuleService.c        | 13 +++
>  .../MonotonicCounter.c                        |  3 +
>  .../Universal/Variable/RuntimeDxe/Variable.c  | 40 ++++++--
>  .../Universal/Variable/RuntimeDxe/Variable.h  | 40 ++++++--
>  .../RuntimeDxe/VariableSmmRuntimeDxe.c        | 99
> +++++++++++++++----
>  MdePkg/Include/Library/UefiRuntimeLib.h       | 44 ++++++++-
>  MdePkg/Include/Uefi/UefiSpec.h                | 46 ++++++++-
>  MdePkg/Library/UefiRuntimeLib/RuntimeLib.c    | 43 +++++++-
>  .../XenRealTimeClockLib/XenRealTimeClockLib.c | 22 ++++-
>  14 files changed, 362 insertions(+), 64 deletions(-)
> 
> --
> 2.26.2.windows.1
> 
> 
> 
> 
> 





-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#114756): https://edk2.groups.io/g/devel/message/114756
Mute This Topic: https://groups.io/mt/104045657/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



  parent reply	other threads:[~2024-01-30  1:36 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-29  2:29 [edk2-devel] [PATCH V2 0/5] Add EFI_UNSUPPORTED return for some Runtime Service functions Ren, Suqiang
2024-01-29  2:29 ` [edk2-devel] [PATCH V2 1/5] MdePkg: " Ren, Suqiang
2024-01-29  3:48   ` Michael D Kinney
2024-01-29  2:29 ` [edk2-devel] [PATCH V2 2/5] MdeModulePkg: Update some Runtime Service functions header Ren, Suqiang
2024-01-29  2:29 ` [edk2-devel] [PATCH V2 3/5] EmbeddedPkg: " Ren, Suqiang
2024-01-29  2:46   ` Chang, Abner via groups.io
2024-01-29  2:29 ` [edk2-devel] [PATCH V2 4/5] ArmPlatformPkg: " Ren, Suqiang
2024-01-29  2:29 ` [edk2-devel] [PATCH V2 5/5] OvmfPkg: " Ren, Suqiang
2024-01-29  2:39   ` Yao, Jiewen
2024-01-30  1:36 ` gaoliming via groups.io [this message]
     [not found] ` <17AEB08976789B0D.21687@groups.io>
     [not found]   ` <CO1PR11MB49166BBE9770EA9FB2113FD9967D2@CO1PR11MB4916.namprd11.prod.outlook.com>
2024-01-31 19:13     ` FW: [edk2-devel] [PATCH V2 4/5] ArmPlatformPkg: " Leif Lindholm
2024-01-31 20:04       ` Michael D Kinney
2024-02-01 18:35         ` Leif Lindholm
     [not found] ` <17AEB088A9F5F269.10155@groups.io>
2024-02-02  1:23   ` [edk2-devel] [PATCH V2 2/5] MdeModulePkg: " Ren, Suqiang
2024-02-02  2:40     ` Michael D Kinney

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='03dc01da531c$bccaadc0$36600940$@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