From: "Dong, Eric" <eric.dong@intel.com>
To: "Zeng, Star" <star.zeng@intel.com>,
"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Cc: "Yao, Jiewen" <jiewen.yao@intel.com>,
"Kinney, Michael D" <michael.d.kinney@intel.com>,
Laszlo Ersek <lersek@redhat.com>
Subject: Re: [PATCH 0/2] Move MicrocodeUpdate from UefiCpuPkg to IntelSiliconPkg
Date: Wed, 29 Nov 2017 12:41:30 +0000 [thread overview]
Message-ID: <ED077930C258884BBCB450DB737E66224AA4C82B@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <1511931533-16456-1-git-send-email-star.zeng@intel.com>
Reviewed-by: Eric Dong <eric.dong@intel.com>
-----Original Message-----
From: Zeng, Star
Sent: Wednesday, November 29, 2017 12:59 PM
To: edk2-devel@lists.01.org
Cc: Zeng, Star; Yao, Jiewen; Kinney, Michael D; Dong, Eric; Laszlo Ersek
Subject: [PATCH 0/2] Move MicrocodeUpdate from UefiCpuPkg to IntelSiliconPkg
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=540
To consume FIT table for Microcode update, UefiCpuPkg/Feature/Capsule/MicrocodeUpdateDxe
needs to be updated to consume
IntelSiliconPkg/Include/IndustryStandard/FirmwareInterfaceTable.h,
but UefiCpuPkg could not depend on IntelSiliconPkg.
Since the Microcode update feature is specific to Intel, we can first move the Microcode update feature code from UefiCpuPkg to IntelSiliconPkg [first step], then update the code to consume FIT table [second step].
This patch series is for the first step.
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Eric Dong <eric.dong@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Regression-tested-by: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Star Zeng <star.zeng@intel.com>
Star Zeng (2):
IntelSiliconPkg: Move MicrocodeUpdate from UefiCpuPkg
IntelSiliconPkg: Update MicrocodeUpdate to build with the package
.../MicrocodeFlashAccessLibNull/MicrocodeFlashAccessLibNull.c | 0
.../MicrocodeFlashAccessLibNull.inf | 6 +++---
.../MicrocodeFlashAccessLibNull.uni | 0
.../Capsule/MicrocodeCapsulePdb/MicrocodeCapsulePdb.dsc | 0
.../Capsule/MicrocodeCapsulePdb/MicrocodeCapsulePdb.fdf | 0
.../Feature/Capsule/MicrocodeCapsulePdb/Readme.md | 0
.../Capsule/MicrocodeCapsuleTxt/Microcode/Microcode.inf | 0
.../Capsule/MicrocodeCapsuleTxt/MicrocodeCapsuleTxt.dsc | 0
.../Capsule/MicrocodeCapsuleTxt/MicrocodeCapsuleTxt.fdf | 0
.../Feature/Capsule/MicrocodeCapsuleTxt/Readme.md | 0
.../Feature/Capsule/MicrocodeUpdateDxe/MicrocodeFmp.c | 0
.../Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdate.c | 0
.../Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdate.h | 0
.../Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdateDxe.inf | 3 ++- .../Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdateDxe.uni | 0
.../Capsule/MicrocodeUpdateDxe/MicrocodeUpdateDxeExtra.uni | 0
{UefiCpuPkg => IntelSiliconPkg}/Include/Guid/MicrocodeFmp.h | 0
.../Include/Library/MicrocodeFlashAccessLib.h | 0
IntelSiliconPkg/IntelSiliconPkg.dec | 10 +++++++++-
IntelSiliconPkg/IntelSiliconPkg.dsc | 2 ++
UefiCpuPkg/UefiCpuPkg.dec | 7 -------
UefiCpuPkg/UefiCpuPkg.dsc | 2 --
22 files changed, 16 insertions(+), 14 deletions(-) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/Library/MicrocodeFlashAccessLibNull/MicrocodeFlashAccessLibNull.c (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/Library/MicrocodeFlashAccessLibNull/MicrocodeFlashAccessLibNull.inf (85%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/Library/MicrocodeFlashAccessLibNull/MicrocodeFlashAccessLibNull.uni (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/MicrocodeCapsulePdb/MicrocodeCapsulePdb.dsc (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/MicrocodeCapsulePdb/MicrocodeCapsulePdb.fdf (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/MicrocodeCapsulePdb/Readme.md (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/MicrocodeCapsuleTxt/Microcode/Microcode.inf (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/MicrocodeCapsuleTxt/MicrocodeCapsuleTxt.dsc (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/MicrocodeCapsuleTxt/MicrocodeCapsuleTxt.fdf (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/MicrocodeCapsuleTxt/Readme.md (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/MicrocodeUpdateDxe/MicrocodeFmp.c (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdate.c (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdate.h (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdateDxe.inf (91%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdateDxe.uni (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdateDxeExtra.uni (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Include/Guid/MicrocodeFmp.h (100%) rename {UefiCpuPkg => IntelSiliconPkg}/Include/Library/MicrocodeFlashAccessLib.h (100%)
--
2.7.0.windows.1
prev parent reply other threads:[~2017-11-29 12:37 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-29 4:58 [PATCH 0/2] Move MicrocodeUpdate from UefiCpuPkg to IntelSiliconPkg Star Zeng
2017-11-29 4:58 ` [PATCH 1/2] IntelSiliconPkg: Move MicrocodeUpdate from UefiCpuPkg Star Zeng
2017-11-29 4:58 ` [PATCH 2/2] IntelSiliconPkg: Update MicrocodeUpdate to build with the package Star Zeng
2017-11-29 6:52 ` [PATCH 0/2] Move MicrocodeUpdate from UefiCpuPkg to IntelSiliconPkg Yao, Jiewen
2017-11-29 12:34 ` Laszlo Ersek
2017-11-29 12:41 ` Dong, Eric [this message]
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=ED077930C258884BBCB450DB737E66224AA4C82B@shsmsx102.ccr.corp.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