From: Ruiyu Ni <ruiyu.ni@intel.com>
To: edk2-devel@lists.01.org
Subject: [PATCH 00/11] Add ResetPlatformSpecific() to ResetSystemLib
Date: Wed, 10 Aug 2016 13:56:00 +0800 [thread overview]
Message-ID: <20160810055611.266232-1-ruiyu.ni@intel.com> (raw)
The patches add ResetPlatformSpecific() to ResetSystemLib library class
and all library instances.
The KbcResetDxe driver is removed from PcAtChipsetPkg.
Ruiyu Ni (11):
MdePkg/UefiSpec.h: Align function header of ResetSystem to UEFI Spec
MdeModulePkg: Add API ResetPlatformSpecific() to ResetSystemLib.h
MdeModulePkg/BaseResetSystemLibNull: Implement ResetPlatformSpecific
CorebootPayloadPkg/ResetSystemLib: Implement ResetPlatformSpecific
OvmfPkg/ResetSystemLib: Implement ResetPlatformSpecific
PcAtChipsetPkg/ResetSystemLib: Implement ResetPlatformSpecific
QuarkSocPkg/ResetSystemLib: Implement ResetPlatformSpecific
Vlv2TbltDevicePkg/ResetSystemLib: Implement ResetPlatformSpecific
OvmfPkg: Use MdeModulePkg/ResetSystemRuntimeDxe
PcAtChipsetPkg: Remove KbcResetDxe
MdeModulePkg/ResetSystemRuntimeDxe: Support EfiResetPlatformSpecific
.../Library/ResetSystemLib/ResetSystemLib.c | 23 ++++-
MdeModulePkg/Include/Library/ResetSystemLib.h | 22 ++++-
.../BaseResetSystemLibNull.c | 23 ++++-
.../Universal/ResetSystemRuntimeDxe/ResetSystem.c | 14 ++-
MdePkg/Include/Uefi/UefiSpec.h | 8 +-
OvmfPkg/Library/ResetSystemLib/ResetSystemLib.c | 23 ++++-
OvmfPkg/OvmfPkgIa32.dsc | 2 +-
OvmfPkg/OvmfPkgIa32.fdf | 2 +-
OvmfPkg/OvmfPkgIa32X64.dsc | 2 +-
OvmfPkg/OvmfPkgIa32X64.fdf | 2 +-
OvmfPkg/OvmfPkgX64.dsc | 2 +-
OvmfPkg/OvmfPkgX64.fdf | 2 +-
PcAtChipsetPkg/KbcResetDxe/KbcReset.uni | 27 ------
PcAtChipsetPkg/KbcResetDxe/KbcResetExtra.uni | 25 -----
PcAtChipsetPkg/KbcResetDxe/Reset.inf | 50 ----------
PcAtChipsetPkg/KbcResetDxe/ResetEntry.c | 106 ---------------------
.../Library/ResetSystemLib/ResetSystemLib.c | 21 ++++
PcAtChipsetPkg/PcAtChipsetPkg.dsc | 1 -
.../Library/ResetSystemLib/ResetSystemLib.c | 22 ++++-
.../Library/ResetSystemLib/ResetSystemLib.c | 23 ++++-
20 files changed, 172 insertions(+), 228 deletions(-)
delete mode 100644 PcAtChipsetPkg/KbcResetDxe/KbcReset.uni
delete mode 100644 PcAtChipsetPkg/KbcResetDxe/KbcResetExtra.uni
delete mode 100644 PcAtChipsetPkg/KbcResetDxe/Reset.inf
delete mode 100644 PcAtChipsetPkg/KbcResetDxe/ResetEntry.c
--
2.9.0.windows.1
next reply other threads:[~2016-08-10 5:56 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-10 5:56 Ruiyu Ni [this message]
2016-08-10 5:56 ` [PATCH 01/11] MdePkg/UefiSpec.h: Align function header of ResetSystem to UEFI Spec Ruiyu Ni
2016-08-16 4:49 ` Gao, Liming
2016-08-10 5:56 ` [PATCH 02/11] MdeModulePkg: Add API ResetPlatformSpecific() to ResetSystemLib.h Ruiyu Ni
2016-08-10 5:56 ` [PATCH 03/11] MdeModulePkg/BaseResetSystemLibNull: Implement ResetPlatformSpecific Ruiyu Ni
2016-08-23 3:21 ` Tian, Feng
2016-08-23 4:56 ` Ni, Ruiyu
2016-08-10 5:56 ` [PATCH 04/11] CorebootPayloadPkg/ResetSystemLib: " Ruiyu Ni
2016-08-11 16:09 ` Ma, Maurice
2016-08-10 5:56 ` [PATCH 05/11] OvmfPkg/ResetSystemLib: " Ruiyu Ni
2016-08-10 5:56 ` [PATCH 06/11] PcAtChipsetPkg/ResetSystemLib: " Ruiyu Ni
2016-08-10 5:56 ` [PATCH 07/11] QuarkSocPkg/ResetSystemLib: " Ruiyu Ni
2016-08-10 16:28 ` Kinney, Michael D
2016-08-10 5:56 ` [PATCH 08/11] Vlv2TbltDevicePkg/ResetSystemLib: " Ruiyu Ni
2016-08-11 2:22 ` Wei, David
2016-08-10 5:56 ` [PATCH 09/11] OvmfPkg: Use MdeModulePkg/ResetSystemRuntimeDxe Ruiyu Ni
2016-08-10 5:56 ` [PATCH 10/11] PcAtChipsetPkg: Remove KbcResetDxe Ruiyu Ni
2016-08-10 5:56 ` [PATCH 11/11] MdeModulePkg/ResetSystemRuntimeDxe: Support EfiResetPlatformSpecific Ruiyu Ni
2016-08-10 17:33 ` Jordan Justen
2016-08-11 2:43 ` Ni, Ruiyu
2016-08-11 6:05 ` Jordan Justen
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=20160810055611.266232-1-ruiyu.ni@intel.com \
--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