From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.100; helo=mga07.intel.com; envelope-from=star.zeng@intel.com; receiver=edk2-devel@lists.01.org Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id D28E021A04E2F for ; Tue, 28 Nov 2017 20:54:33 -0800 (PST) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 Nov 2017 20:58:57 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,471,1505804400"; d="scan'208";a="178991594" Received: from shwdeopenpsi068.ccr.corp.intel.com ([10.239.158.46]) by orsmga005.jf.intel.com with ESMTP; 28 Nov 2017 20:58:55 -0800 From: Star Zeng To: edk2-devel@lists.01.org Cc: Star Zeng , Jiewen Yao , Michael D Kinney , Eric Dong , Laszlo Ersek Date: Wed, 29 Nov 2017 12:58:51 +0800 Message-Id: <1511931533-16456-1-git-send-email-star.zeng@intel.com> X-Mailer: git-send-email 2.7.0.windows.1 Subject: [PATCH 0/2] Move MicrocodeUpdate from UefiCpuPkg to IntelSiliconPkg X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Nov 2017 04:54:34 -0000 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 Cc: Michael D Kinney Cc: Eric Dong Cc: Laszlo Ersek Regression-tested-by: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Star Zeng 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