From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: liming.gao@intel.com) Received: from mga14.intel.com (mga14.intel.com []) by groups.io with SMTP; Sun, 11 Aug 2019 22:19:15 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Aug 2019 22:19:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,376,1559545200"; d="scan'208";a="166607514" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga007.jf.intel.com with ESMTP; 11 Aug 2019 22:19:14 -0700 Received: from shsmsx107.ccr.corp.intel.com (10.239.4.96) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.439.0; Sun, 11 Aug 2019 22:19:14 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.112]) by SHSMSX107.ccr.corp.intel.com ([169.254.9.65]) with mapi id 14.03.0439.000; Mon, 12 Aug 2019 13:19:13 +0800 From: "Liming Gao" To: "devel@edk2.groups.io" , "Jin, Eric" Subject: Re: [edk2-devel] [PATCH V2 00/10] Multiple Controllers Support solution Thread-Topic: [edk2-devel] [PATCH V2 00/10] Multiple Controllers Support solution Thread-Index: AQHVUK/GO8NWZkitrEel2eO0ByV1rqb2+XWA Date: Mon, 12 Aug 2019 05:19:12 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E4CE84D@SHSMSX104.ccr.corp.intel.com> References: <20190812014603.42484-1-eric.jin@intel.com> In-Reply-To: <20190812014603.42484-1-eric.jin@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Return-Path: liming.gao@intel.com Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Eric: Can you list the difference compared to version 1? Thanks Liming >-----Original Message----- >From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of Eri= c >Jin >Sent: Monday, August 12, 2019 9:46 AM >To: devel@edk2.groups.io >Subject: [edk2-devel] [PATCH V2 00/10] Multiple Controllers Support solut= ion > >REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D1525 > >The patch set is to support drivers that manage multiple controllers and >also provide a firmware update capability to each managed controller. > >The following modules are related to Multiple Controllers Support solutio= n > >FmpDevicePkg\FmpDxe\FmpDxe.inf - Driver to manage multiple controllers >and provide >the firmware update capability to each managed controller. >FmpDevicePkg\CapsuleUpdatePolicyDxe\CapsuleUpdatePolicyDxe.inf - Driver >to produce >the Capsule Update Policy Protocol using the services of the >CapsuleUpdatePolicyLib >class. The protocol is a private interface to the FmpDevicePkg >FmpDevicePkg\Library\CapsuleUpdatePolicyLibOnProtocol\CapsuleUpdatePo >licyLibOnProtocol.inf - >CapsuleUpdatePolicyLib instance that uses the services of the Capsule Upd= ate >Policy >Protocol produced by CapsuleUpdatePolicyDxe >FmpDevicePkg\Library\CapsuleUpdatePolicyLibNull\CapsuleUpdatePolicyLibN >ull.inf - >Null CapsuleUpdatePolicyLib instance and the template for platform specif= ic >implementation >FmpDevicePkg\Library\FmpDeviceLibNull\FmpDeviceLibNull.inf - Null >FmpDeviceLib >instance and the template for platform specific implementation > >Eric Jin (10): > FmpDevicePkg: Add UEFI_DRIVER support > FmpDevicePkg: Add APIs to FmpDeviceLib > FmpDEvicePkg/FmpDeviceLibNull: Implement new APIs > FmpDevicePkg/FmpDxe: Use new FmpDeviceLib APIs > FmpDevicePkg/FmpDxe: Different variable for each FMP Descriptor > FmpDevicePkg: Add Capsule Update Policy Protocol > FmpDevicePkg/FmpDxe: Improve all DEBUG() messages > FmpDevicePkg/FmpDxe: Add PcdFmpDeviceImageTypeIdGuid > FmpDevicePkg/FmpDxe: Add PcdFmpDeviceStorageAccessEnable > FmpDevicePkg/FmpDxe: Remove use of CatSprint() > > .../CapsuleUpdatePolicyDxe.c | 173 ++++ > .../CapsuleUpdatePolicyDxe.h | 140 +++ > .../CapsuleUpdatePolicyDxe.inf | 48 + > .../CapsuleUpdatePolicyDxe.uni | 14 + > .../CapsuleUpdatePolicyDxeExtra.uni | 14 + > FmpDevicePkg/FmpDevicePkg.dec | 43 +- > FmpDevicePkg/FmpDevicePkg.dsc | 64 +- > FmpDevicePkg/FmpDevicePkg.uni | 16 +- > FmpDevicePkg/FmpDxe/DetectTestKey.c | 16 +- > FmpDevicePkg/FmpDxe/FmpDxe.c | 792 ++++++++++------ > FmpDevicePkg/FmpDxe/FmpDxe.h | 355 ++++++++ > FmpDevicePkg/FmpDxe/FmpDxe.inf | 7 +- > FmpDevicePkg/FmpDxe/FmpDxeLib.inf | 7 +- > FmpDevicePkg/FmpDxe/VariableSupport.c | 844 +++++++++++++----- > FmpDevicePkg/FmpDxe/VariableSupport.h | 135 ++- > FmpDevicePkg/Include/Library/FmpDeviceLib.h | 104 ++- > .../CapsuleUpdatePolicyLibOnProtocol.c | 171 ++++ > .../CapsuleUpdatePolicyLibOnProtocol.inf | 40 + > .../CapsuleUpdatePolicyLibOnProtocol.uni | 15 + > .../Library/FmpDeviceLibNull/FmpDeviceLib.c | 93 +- > .../FmpDeviceLibNull/FmpDeviceLibNull.inf | 4 +- > .../FmpPayloadHeaderLibV1.inf | 4 +- > .../Library/FmpPayloadHeaderLib.h | 0 > .../Protocol/CapsuleUpdatePolicy.h | 132 +++ > 24 files changed, 2644 insertions(+), 587 deletions(-) > create mode 100644 >FmpDevicePkg/CapsuleUpdatePolicyDxe/CapsuleUpdatePolicyDxe.c > create mode 100644 >FmpDevicePkg/CapsuleUpdatePolicyDxe/CapsuleUpdatePolicyDxe.h > create mode 100644 >FmpDevicePkg/CapsuleUpdatePolicyDxe/CapsuleUpdatePolicyDxe.inf > create mode 100644 >FmpDevicePkg/CapsuleUpdatePolicyDxe/CapsuleUpdatePolicyDxe.uni > create mode 100644 >FmpDevicePkg/CapsuleUpdatePolicyDxe/CapsuleUpdatePolicyDxeExtra.uni > create mode 100644 FmpDevicePkg/FmpDxe/FmpDxe.h > create mode 100644 >FmpDevicePkg/Library/CapsuleUpdatePolicyLibOnProtocol/CapsuleUpdatePo >licyLibOnProtocol.c > create mode 100644 >FmpDevicePkg/Library/CapsuleUpdatePolicyLibOnProtocol/CapsuleUpdatePo >licyLibOnProtocol.inf > create mode 100644 >FmpDevicePkg/Library/CapsuleUpdatePolicyLibOnProtocol/CapsuleUpdatePo >licyLibOnProtocol.uni > rename FmpDevicePkg/{Include =3D> >PrivateInclude}/Library/FmpPayloadHeaderLib.h (100%) > create mode 100644 >FmpDevicePkg/PrivateInclude/Protocol/CapsuleUpdatePolicy.h > >-- >2.20.1.windows.1 > > >