From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.115, mailfrom: rangasai.v.chaganty@intel.com) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by groups.io with SMTP; Sun, 06 Oct 2019 18:34:53 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Oct 2019 18:34:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,265,1566889200"; d="scan'208,217";a="394186838" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga006.fm.intel.com with ESMTP; 06 Oct 2019 18:34:53 -0700 Received: from fmsmsx126.amr.corp.intel.com (10.18.125.43) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.439.0; Sun, 6 Oct 2019 18:34:53 -0700 Received: from fmsmsx108.amr.corp.intel.com ([169.254.9.205]) by FMSMSX126.amr.corp.intel.com ([169.254.1.62]) with mapi id 14.03.0439.000; Sun, 6 Oct 2019 18:34:51 -0700 From: "Chaganty, Rangasai V" To: "Kubacki, Michael A" , "afish@apple.com" , "devel@edk2.groups.io" CC: "Dong, Eric" , "Gao, Liming" , "Ni, Ray" Subject: Re: [edk2-devel] [edk2-platforms][PATCH V1 0/3] Add FW Boot Media Device Indicator Thread-Topic: [edk2-devel] [edk2-platforms][PATCH V1 0/3] Add FW Boot Media Device Indicator Thread-Index: AQHVd/XI0MuHFQNjtkOEcbKKkAGKsKdH+pKQgAALMkCAAMNOgIAAO/aAgAVgp6A= Date: Mon, 7 Oct 2019 01:34:51 +0000 Message-ID: References: <20191001011547.14588-1-michael.a.kubacki@intel.com> <56807650-1B30-4A3F-BF9D-6A98F945DA95@apple.com> In-Reply-To: Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNDRiOGJjZWItZjg0Zi00MjkyLTk4MGMtNGM0NjEzNzE3ZWM0IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiNkxuTFRoMVBHXC8rN3NyYXpMNVdNWmNWWVF0OFlTbkdSNGJjQm5DeDJNelF1QTJoYU5ud2ZCdFZxZ0VudExjbVoifQ== x-ctpclassification: CTP_NT x-originating-ip: [10.1.200.107] MIME-Version: 1.0 Return-Path: rangasai.v.chaganty@intel.com Content-Language: en-US Content-Type: multipart/alternative; boundary="_000_BCAAFC0A0683754C9A88D2C4E3F3A9C7F2F4DEF4FMSMSX108amrcor_" --_000_BCAAFC0A0683754C9A88D2C4E3F3A9C7F2F4DEF4FMSMSX108amrcor_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Thank you both for sharing the background and justification on why this sho= uld not be part of MdePkg. In general, it appeared we could locate a PPI that provides Boot Media (si= milar to how EFI_SEC_PLATFORM_INFORMATION2_PPI is located to know informati= on gathered in SEC phase into PEI) or a guided HOB produced by the Platform= code. This patch series choses the latter option which is simpler implementation= and serves the needs of silicon and platform code for a non- SPI boot medi= a scenario. Regards, Sai From: Kubacki, Michael A Sent: Thursday, October 03, 2019 12:55 AM To: afish@apple.com; devel@edk2.groups.io Cc: Chaganty, Rangasai V ; Dong, Eric ; Gao, Liming ; Ni, Ray Subject: RE: [edk2-devel] [edk2-platforms][PATCH V1 0/3] Add FW Boot Media= Device Indicator Thanks for sharing. You articulated well why I also don't think this is re= quired in MdePkg. My description of the reset vector problem was kind of incomplete. While the = x86 reset vector is fixed at the top of the address space, that does not mean that a FV has= to be mapped to it (or any SPI flash based content). SEC has made that assumption. For exampl= e, the top address space could be mapped to another random access memory with x86 ins= tructions. In this case, assumptions previously made in SecCore such as calculating t= he BFV size as follows are invalid: SecCoreData.BootFirmwareVolumeSize =3D (UINTN)(0x100000000ULL - (UINTN) = BootFirmwareVolume); In a system with NAND media, the BFV could be located in CAR at a base of = 4GB-xKB/MB with execution entry via a jump from the code at top of memory. In this particu= lar case, the FvLength field can more reliably determine the FV size. These patches use a GUIDed HOB. It just hides that detail behind a functio= n API largely added for convenience so firmware boot media consumers do not need to handle the= HOB related logic. Thanks, Michael From: afish@apple.com > Sent: Wednesday, October 2, 2019 9:20 PM To: devel@edk2.groups.io; Kubacki, Michael A = > Cc: Chaganty, Rangasai V >; Dong, Eric >; Gao, Liming >; N= i, Ray > Subject: Re: [edk2-devel] [edk2-platforms][PATCH V1 0/3] Add FW Boot Media= Device Indicator Since I was around back in the Intel Tiano days and I've worked on all the= PI specs I can share the history. The reset vector is a hardware thing. It is usually at the top or bottom o= f the address space. For x86 it is at the TOP of the ROM and that is why th= e FV has a VoluteTop file GUID that places the file at the end of the FV, t= hus the end of that file is the reset vector. If the reset vector is low th= en the FV header starts with a 16 byte ZeroVector that can contain the rese= t jump instruction. The other architecture that is out there is a mask ROM,= and the mask ROM is the reset vector, and that code hands off to the 2nd l= evel, and sometimes that can be in DRAM or ROM. The PI FVs (Firmware Volumes) are abstracted by Firmware Volume Blocks (FV= B) the FVB instances abstract the storage media for the firmware. Thus from= a PI spec point of view there is not need to define the storage type of th= e "ROM". That is just an implementation detail, that needs to be managed by= the implementation. If you think about in UEFI disk are abstracted by the Block IO protocol. W= e can boot an OS from any Block device, and the firmware does not need to k= now what kind of disk it is. The purpose of the Block IO protocol is to abs= tract all possible implementations o block devices. For the "Boot ROM", FVB= is the same kind of abstraction. So you can implement PI with out knowing = the media type. Managing the media type was is a platform abstraction, thus= there is no need for a boot media abstraction in the MdePkg. That being said the PI architecture is abstract to a fault. It was designe= d to abstract all possible future platforms. If there are a family of platf= orms that share common properties it makes sense to build a platform abstra= ction package that a set of platforms can share. This is the intent of the = PI architecture and the EDKII source base. The MdePkg implements the UEFI and PI specs, and other industry standards,= with some common libs thrown in. So the MdePkg is not the place to put som= e implementation hint about the Media Device. You could use a GUIDed HOB fo= r that if needed? Thanks, Andrew Fish On Oct 2, 2019, at 8:02 PM, Kubacki, Michael A > wrote: In platforms built for boot media other than SPI flash there has been a co= mpelling need for silicon and platform code to be aware of the firmware boot media = but apart from the UEFI variable driver (which is a special case being address= ed here - https://github.com/makubacki/edk2/tree/storage_agnostic_uefi_variab= les), this has not been the case for edk2 repository packages. In some cases, co= de in SEC has made assumptions about the reset vector or FIT pointer that do not nec= essarily translate to storage media that does not support MMIO. These cases have be= en handled more gracefully than checking the firmware boot media technology. = This is just an observation, not necessarily a case for it to stay in IntelSilicon= Pkg (which does make it accessible to Intel silicon and platform code). I suppose the firmware boot media properties could be treated in a similar= manner to Boot Mode as defined in the Platform Initialization spec. If this was d= one, it may make more sense to abstract the technology impact onto firmware, for examp= le, whether it supports MMIO or not (NOR vs NAND flash) instead of what is def= ined here with specific technologies such as eMMC and UFS. Otherwise, the speci= fication describing this would be subject to constant expansion over time keeping p= ace with new technologies and cross-generation code (not silicon or platform specif= ic drivers) may base conditionals on something like eMMC when its algorithm really app= lies to all NAND media (which, again, has been the proven observation thus far out= side silicon and platform code). With that said, I see the firmware boot technology details being more pert= inent to silicon and platform code so that's why this change is made now. It can im= mediately address existing needs for these details in silicon and platform code. So= me form of the firmware boot media details in a more generic package could be useful = but it will likely not align closely with the scope of information needed at this= level and is an undertaking, that in my opinion, is separate but compatible with the wo= rk done here. -----Original Message----- From: Chaganty, Rangasai V > Sent: Wednesday, October 2, 2019 4:03 PM To: Kubacki, Michael A >; devel@edk2.groups.io Cc: Dong, Eric >; Gao, Lim= ing >; Ni, Ray > Subject: RE: [edk2-platforms][PATCH V1 0/3] Add FW Boot Media Device Indicator I am not sure if there is a silicon scope around the FirmwareBootMediaLib. Have we considered adding this interface to MdePkg, instead? -----Original Message----- From: Kubacki, Michael A Sent: Monday, September 30, 2019 6:16 PM To: devel@edk2.groups.io Cc: Chaganty, Rangasai V >; Dong, Eric >; Gao, Liming >; Ni, Ray > Subject: [edk2-platforms][PATCH V1 0/3] Add FW Boot Media Device Indicator This patch series introduces a mechanism for determining the firmware boot media device. This allows the firmware boot media to be discovered through a standardized API. Traditionally, most systems have only supported firmware storage on SPI flash. Presently, several other storage technologies are being used to sto= re boot system firmware such as eMMC, UFS, and NVMe. The API for all board, platform, and silicon code to consume the firmware boot media device is provided by the FirmwareBootMediaLib in IntelSiliconPkg. A driver (FirmwareBootMediaInfoPei) is added to BoardModulePkg to serve as a consistent location for reporting the firmware boot device informatio= n. In order to abstract the potentially hardware-specific details to determin= e the boot media (for platforms that support multiple firmware boot media devices), the driver retrieves the boot media information using a new libr= ary class introduced called FirmwareBootMediaInfoLib. A default instance of th= is library class is provided in BoardModulePkg that always returns SPI flash.= This is intended to serve as a default implementation of the library for the mo= st common scenario and to easily allow a board package to substitute the logi= c required to determine the boot media in more complex scenarios. Ultimately, FirmwareBootMediaInfoPei produces a HOB containing the firmware boot media device information so it can be used in the HOB consumer phase. Cc: Sai Chaganty > Cc: Eric Dong > Cc: Liming Gao > Cc: Ray Ni > Signed-off-by: Michael Kubacki > Michael Kubacki (3): IntelSiliconPkg/FirmwareBootMediaLib: Add library BoardModulePkg/FirmwareBootMediaInfoLib: Add library BoardModulePkg/FirmwareBootMediaInfoPei: Add module Platform/Intel/BoardModulePkg/BoardModulePkg.dec | 3 + Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dec = | 4 +- Platform/Intel/BoardModulePkg/BoardModulePkg.dsc | 5 + Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dsc = | 4 +- Platform/Intel/BoardModulePkg/FirmwareBootMediaInfo/FirmwareBootMe diaInfoPei.inf | 46 +++++++++ Platform/Intel/BoardModulePkg/Library/PeiFirmwareBootMediaInfoLib/Pei FirmwareBootMediaInfoLib.inf | 35 +++++++ Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/DxeSmmFirm wareBootMediaLib.inf | 43 ++++++++ Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/PeiFirmwareB ootMediaLib.inf | 38 +++++++ Platform/Intel/BoardModulePkg/Include/Library/FirmwareBootMediaInfoLi b.h | 26 +++++ Silicon/Intel/IntelSiliconPkg/Include/Library/FirmwareBootMediaLib.h | 106 +++++++++++++++++++ Platform/Intel/BoardModulePkg/FirmwareBootMediaInfo/FirmwareBootMe diaInfoPei.c | 76 ++++++++++++++ Platform/Intel/BoardModulePkg/Library/PeiFirmwareBootMediaInfoLib/Pei FirmwareBootMediaInfoLib.c | 24 +++++ Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/DxeSmmFirm wareBootMediaLib.c | 107 +++++++++++++++++++ Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/FirmwareBoo tMediaLib.c | 109 ++++++++++++++++++++ Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/PeiFirmwareB ootMediaLib.c | 82 +++++++++++++++ 15 files changed, 706 insertions(+), 2 deletions(-) create mode 100644 Platform/Intel/BoardModulePkg/FirmwareBootMediaInfo/FirmwareBootMe diaInfoPei.inf create mode 100644 Platform/Intel/BoardModulePkg/Library/PeiFirmwareBootMediaInfoLib/Pei FirmwareBootMediaInfoLib.inf create mode 100644 Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/DxeSmmFirm wareBootMediaLib.inf create mode 100644 Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/PeiFirmwareB ootMediaLib.inf create mode 100644 Platform/Intel/BoardModulePkg/Include/Library/FirmwareBootMediaInfoLi b.h create mode 100644 Silicon/Intel/IntelSiliconPkg/Include/Library/FirmwareBootMediaLib.h create mode 100644 Platform/Intel/BoardModulePkg/FirmwareBootMediaInfo/FirmwareBootMe diaInfoPei.c create mode 100644 Platform/Intel/BoardModulePkg/Library/PeiFirmwareBootMediaInfoLib/Pei FirmwareBootMediaInfoLib.c create mode 100644 Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/DxeSmmFirm wareBootMediaLib.c create mode 100644 Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/FirmwareBoo tMediaLib.c create mode 100644 Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/PeiFirmwareB ootMediaLib.c -- 2.16.2.windows.1 --_000_BCAAFC0A0683754C9A88D2C4E3F3A9C7F2F4DEF4FMSMSX108amrcor_ Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

Thank you both for sh= aring the background and justification on why this should not be part of Md= ePkg.

In general, it appear= ed we could locate a PPI that provides Boot Media (similar to how EFI_SEC_P= LATFORM_INFORMATION2_PPI is located to know information gathered in SEC pha= se into PEI) or a guided HOB produced by the Platform code.

This patch series cho= ses the latter option which is simpler implementation and serves the needs = of silicon and platform code for a non- SPI boot media scenario.=

 

Regards,

Sai=

 

From: Ku= backi, Michael A
Sent: Thursday, October 03, 2019 12:55 AM
To: afish@apple.com; devel@edk2.groups.io
Cc: Chaganty, Rangasai V <rangasai.v.chaganty@intel.com>; Don= g, Eric <eric.dong@intel.com>; Gao, Liming <liming.gao@intel.com&g= t;; Ni, Ray <ray.ni@intel.com>
Subject: RE: [edk2-devel] [edk2-platforms][PATCH V1 0/3] Add FW Boo= t Media Device Indicator

 

Thanks for sharing. You articulated well why I also= don’t think this is required in MdePkg. My

description of the reset vector problem was kind of= incomplete. While the x86 reset vector

is fixed at the top of the address space, that does= not mean that a FV has to be mapped to it

(or any SPI flash based content). SEC has made that= assumption. For example, the top

address space could be mapped to another random acc= ess memory with x86 instructions.

In this case, assumptions previously made in SecCor= e such as calculating the BFV size as follows are invalid:

  SecCoreData.BootFirmwareVolumeSize =3D (UINT= N)(0x100000000ULL - (UINTN) BootFirmwareVolume);

 

In a system with NAND media, the BFV could be locat= ed in CAR at a base of 4GB-xKB/MB with

execution entry via a jump from the code at top of = memory. In this particular case, the FvLength

field can more reliably determine the FV size.=

 

These patches use a GUIDed HOB. It just hides that = detail behind a function API largely added

for convenience so firmware boot media consumers do= not need to handle the HOB related logic.

 

Thanks,

Michael

 

From: afi= sh@apple.com <afish@apple.com= >
Sent: Wednesday, October 2, 2019 9:20 PM
To: devel@edk2.groups.io; Kubacki, Michael A <mi= chael.a.kubacki@intel.com>
Cc: Chaganty, Rangasai V <rangasai.v.chaganty@intel.com>; Dong, Eric <eric.dong@intel.com>; Gao, Liming <<= a href=3D"mailto:liming.gao@intel.com">liming.gao@intel.com>; Ni, Ray <ray.ni@intel.com><= br> Subject: Re: [edk2-devel] [edk2-platforms][PATCH V1 0/3] Add FW Boo= t Media Device Indicator

 

Since I was around back in the Intel Tiano days and= I've worked on all the PI specs I can share the history. <= /p>

 

The reset vector is a hardware thing. It is usually= at the top or bottom of the address space. For x86 it is at the TOP of the= ROM and that is why the FV has a VoluteTop file GUID that places the file = at the end of the FV, thus the end of that file is the reset vector. If the reset vector is low then the FV = header starts with a 16 byte ZeroVector that can contain the reset jump ins= truction. The other architecture that is out there is a mask ROM, and the m= ask ROM is the reset vector, and that code hands off to the 2nd level, and sometimes that can be in DRAM o= r ROM. 

 

The PI FVs (Firmware Volumes) are abstracted by Fir= mware Volume Blocks (FVB) the FVB instances abstract the storage media for = the firmware. Thus from a PI spec point of view there is not need to define= the storage type of the "ROM". That is just an implementation detail, that needs to be managed by the impleme= ntation. 

 

If you think about in UEFI disk are abstracted by t= he Block IO protocol. We can boot an OS from any Block device, and the firm= ware does not need to know what kind of disk it is. The purpose of the Bloc= k IO protocol is to abstract all possible implementations o block devices. For the "Boot ROM", FVB is the= same kind of abstraction. So you can implement PI with out knowing the med= ia type. Managing the media type was is a platform abstraction, thus there = is no need for a boot media abstraction in the MdePkg. 

 

That being said the PI architecture is abstract to = a fault. It was designed to abstract all possible future platforms. If ther= e are a family of platforms that share common properties it makes sense to = build a platform abstraction package that a set of platforms can share. This is the intent of the PI architect= ure and the EDKII source base. 

 

The MdePkg implements the UEFI and PI specs, and ot= her industry standards, with some common libs thrown in. So the MdePkg is n= ot the place to put some implementation hint about the Media Device. You co= uld use a GUIDed HOB for that if needed?

 

Thanks,

 

Andrew Fish

 

On Oct 2, 2019, at 8:02 PM, Kubacki, Michael A <= michael.a.kubacki@intel.com<= /a>> wrote:

 

In platforms built= for boot media other than SPI flash there has been a compelling
need for silicon and platform code to be aware of the firmware boot media = but
apart from the UEFI variable driver (which is a special case being address= ed
here - 
= https://github.com/makubacki/edk2/tree/storage_agnostic_uefi_variables),
this has not been the case for edk2 repository packages. In some cases, co= de in SEC
has made assumptions about the reset vector or FIT pointer that do not nec= essarily
translate to storage media that does not support MMIO. These cases have be= en
handled more gracefully than checking the firmware boot media technology. = This is
just an observation, not necessarily a case for it to stay in IntelSilicon= Pkg (which
does make it accessible to Intel silicon and platform code).

I suppose the firmware boot media properties could be treated in a similar= manner
to Boot Mode as defined in the Platform Initialization spec. If this was d= one, it may
make more sense to abstract the technology impact onto firmware, for examp= le,
whether it supports MMIO or not (NOR vs NAND flash) instead of what is def= ined
here with specific technologies such as eMMC and UFS. Otherwise, the speci= fication
describing this would be subject to constant expansion over time keeping p= ace with
new technologies and cross-generation code (not silicon or platform specif= ic drivers)
may base conditionals on something like eMMC when its algorithm really app= lies to
all NAND media (which, again, has been the proven observation thus far out= side
silicon and platform code).

With that said, I see the firmware boot technology details being more pert= inent to
silicon and platform code so that's why this change is made now. It can im= mediately
address existing needs for these details in silicon and platform code. &nb= sp;Some form of
the firmware boot media details in a more generic package could be useful = but it
will likely not align closely with the scope of information needed at this= level and is
an undertaking, that in my opinion, is separate but compatible with the wo= rk done here.

-----Original Mess= age-----
From: Chaganty, Rangasai V <rangasai.v.chaganty@intel.com>
Sent: Wednesday, October 2, 2019 4:03 PM
To: Kubacki, Michael A <= michael.a.kubacki@intel.com>;
devel@edk2.groups.io
Cc: Dong, Eric <eric.dong@intel.= com>; Gao, Liming <liming= .gao@intel.com>;
Ni, Ray <ray.ni@intel.com> Subject: RE: [edk2-platforms][PATCH V1 0/3] Add FW Boot Media Device
Indicator

I am not sure if there is a silicon scope around the FirmwareBootMediaLib.=
Have we considered adding this interface to MdePkg, instead?

-----Original Message-----
From: Kubacki, Michael A
Sent: Monday, September 30, 2019 6:16 PM
To: devel@edk2.groups.io
Cc: Chaganty, Rangasai V <rangasai.v.chaganty@intel.com>; Dong, Eric
<eric.dong@intel.com>; Ga= o, Liming <liming.gao@intel.com<= /a>>; Ni, Ray
<
ray.ni@intel.com>
Subject: [edk2-platforms][PATCH V1 0/3] Add FW Boot Media Device
Indicator

This patch series introduces a mechanism for determining the firmware boot=
media device. This allows the firmware boot media to be discovered through=
a standardized API.

Traditionally, most systems have only supported firmware storage on SPI flash. Presently, several other storage technologies are being used to sto= re
boot system firmware such as eMMC, UFS, and NVMe.

The API for all board, platform, and silicon code to consume the firmware<= br> boot media device is provided by the FirmwareBootMediaLib in
IntelSiliconPkg.

A driver (FirmwareBootMediaInfoPei) is added to BoardModulePkg to serve as a consistent location for reporting the firmware boot device informatio= n.
In order to abstract the potentially hardware-specific details to determin= e
the boot media (for platforms that support multiple firmware boot media devices), the driver retrieves the boot media information using a new libr= ary
class introduced called FirmwareBootMediaInfoLib. A default instance of th= is
library class is provided in BoardModulePkg that always returns SPI flash.= This
is intended to serve as a default implementation of the library for the mo= st
common scenario and to easily allow a board package to substitute the logi= c
required to determine the boot media in more complex scenarios.
Ultimately, FirmwareBootMediaInfoPei produces a HOB containing the
firmware boot media device information so it can be used in the HOB
consumer phase.

Cc: Sai Chaganty <rang= asai.v.chaganty@intel.com>
Cc: Eric Dong <eric.dong@intel.c= om>
Cc: Liming Gao <liming.gao@inte= l.com>
Cc: Ray Ni <ray.ni@intel.com>= ;
Signed-off-by: Michael Kubacki <michael.a.kubacki@intel.com>

Michael Kubacki (3):
 IntelSiliconPkg/FirmwareBootMediaLib: Add library
 BoardModulePkg/FirmwareBootMediaInfoLib: Add library
 BoardModulePkg/FirmwareBootMediaInfoPei: Add module

Platform/Intel/BoardModulePkg/BoardModulePkg.dec
|   3 +
Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dec     =             &nb= sp;            =             &nb= sp;      |   4
+-
Platform/Intel/BoardModulePkg/BoardModulePkg.dsc
|   5 +
Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dsc     =             &nb= sp;            =             &nb= sp;      |   4
+-

Platform/Intel/BoardModulePkg/FirmwareBootMediaInfo/FirmwareBootMe
diaInfoPei.inf           = ;       |  46 ++++&= #43;++++

Platform/Intel/BoardModulePkg/Library/PeiFirmwareBootMediaInfoLib/Pei
FirmwareBootMediaInfoLib.inf |  35 +++++++= ;

Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/DxeSmmFirm
wareBootMediaLib.inf        |  43 = ++++++++

Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/PeiFirmwareB ootMediaLib.inf          &nbs= p;|  38 +++++++

Platform/Intel/BoardModulePkg/Include/Library/FirmwareBootMediaInfoLi
b.h            &nbs= p;            &= nbsp;|  26 +++++
Silicon/Intel/IntelSiliconPkg/Include/Library/FirmwareBootMediaLib.h
| 106 +++++++++++++= 3;+++++

Platform/Intel/BoardModulePkg/FirmwareBootMediaInfo/FirmwareBootMe
diaInfoPei.c           &= nbsp;        |  76 ++&= #43;+++++++++++

Platform/Intel/BoardModulePkg/Library/PeiFirmwareBootMediaInfoLib/Pei
FirmwareBootMediaInfoLib.c   |  24 +++++= ;

Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/DxeSmmFirm
wareBootMediaLib.c          |= 107 ++++++++++++++= +++++

Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/FirmwareBoo tMediaLib.c           &n= bsp;    | 109 ++++++++&= #43;+++++++++++

Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/PeiFirmwareB ootMediaLib.c           =   |  82 ++++++++++&#= 43;++++
15 files changed, 706 insertions(+), 2 deletions(-)  create mode = 100644
Platform/Intel/BoardModulePkg/FirmwareBootMediaInfo/FirmwareBootMe
diaInfoPei.inf
create mode 100644
Platform/Intel/BoardModulePkg/Library/PeiFirmwareBootMediaInfoLib/Pei
FirmwareBootMediaInfoLib.inf
create mode 100644
Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/DxeSmmFirm
wareBootMediaLib.inf
create mode 100644
Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/PeiFirmwareB ootMediaLib.inf
create mode 100644
Platform/Intel/BoardModulePkg/Include/Library/FirmwareBootMediaInfoLi
b.h
create mode 100644
Silicon/Intel/IntelSiliconPkg/Include/Library/FirmwareBootMediaLib.h
create mode 100644
Platform/Intel/BoardModulePkg/FirmwareBootMediaInfo/FirmwareBootMe
diaInfoPei.c
create mode 100644
Platform/Intel/BoardModulePkg/Library/PeiFirmwareBootMediaInfoLib/Pei
FirmwareBootMediaInfoLib.c
create mode 100644
Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/DxeSmmFirm
wareBootMediaLib.c
create mode 100644
Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/FirmwareBoo tMediaLib.c
create mode 100644
Silicon/Intel/IntelSiliconPkg/Library/PeiDxeSmmBootMediaLib/PeiFirmwareB ootMediaLib.c

--
2.16.2.windows.1



 

--_000_BCAAFC0A0683754C9A88D2C4E3F3A9C7F2F4DEF4FMSMSX108amrcor_--