From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
To: "Zeng, Star" <star.zeng@intel.com>
Cc: "edk2-devel@lists.01.org" <edk2-devel@lists.01.org>,
Ruiyu Ni <ruiyu.ni@intel.com>,
Zimmer Vincent <vincent.zimmer@intel.com>,
Eric Dong <eric.dong@intel.com>, Andrew Fish <afish@apple.com>,
Alexander Graf <agraf@suse.de>,
Brian Richardson <brian.richardson@intel.com>,
Michael D Kinney <michael.d.kinney@intel.com>,
Laszlo Ersek <lersek@redhat.com>
Subject: Re: [PATCH 3/4] MdeModulePkg/PciBusDxe: invoke PE/COFF emulator for foreign option ROMs
Date: Thu, 13 Sep 2018 12:46:59 +0200 [thread overview]
Message-ID: <CAKv+Gu8SjJvy9nVQgbMZOb3ixwj=PMvxD_n_67VT08ePSjtdow@mail.gmail.com> (raw)
In-Reply-To: <c8a5ce83-fdbe-0a5e-354b-0c31342ecc79@intel.com>
On 13 September 2018 at 12:24, Zeng, Star <star.zeng@intel.com> wrote:
> On 2018/9/12 21:21, Ard Biesheuvel wrote:
>>
>> When enumerating option ROM images, take into account whether an emulator
>> exists that would allow dispatch of PE/COFF images built for foreign
>> architectures.
>>
>> Contributed-under: TianoCore Contribution Agreement 1.0
>> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
>> ---
>> MdeModulePkg/Bus/Pci/PciBusDxe/PciBus.h | 1 +
>> MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf | 1 +
>> MdeModulePkg/Bus/Pci/PciBusDxe/PciOptionRomSupport.c | 16
>> +++++++++++++++-
>> 3 files changed, 17 insertions(+), 1 deletion(-)
>>
>> diff --git a/MdeModulePkg/Bus/Pci/PciBusDxe/PciBus.h
>> b/MdeModulePkg/Bus/Pci/PciBusDxe/PciBus.h
>> index 55eb3a5a8070..dc57d4876c0f 100644
>> --- a/MdeModulePkg/Bus/Pci/PciBusDxe/PciBus.h
>> +++ b/MdeModulePkg/Bus/Pci/PciBusDxe/PciBus.h
>> @@ -33,6 +33,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND,
>> EITHER EXPRESS OR IMPLIED.
>> #include <Protocol/PciOverride.h>
>> #include <Protocol/PciEnumerationComplete.h>
>> #include <Protocol/IoMmu.h>
>> +#include <Protocol/PeCoffImageEmulator.h>
>> #include <Library/DebugLib.h>
>> #include <Library/UefiDriverEntryPoint.h>
>> diff --git a/MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
>> b/MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
>> index a21dd2b5edf4..3d99ea0c1047 100644
>> --- a/MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
>> +++ b/MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
>> @@ -97,6 +97,7 @@
>> gEfiLoadFile2ProtocolGuid ## SOMETIMES_PRODUCES
>> gEdkiiIoMmuProtocolGuid ## SOMETIMES_CONSUMES
>> gEfiLoadedImageDevicePathProtocolGuid ## CONSUMES
>> + gEdkiiPeCoffImageEmulatorProtocolGuid ## SOMETIMES_CONSUMES
>> [FeaturePcd]
>> gEfiMdeModulePkgTokenSpaceGuid.PcdPciBusHotplugDeviceSupport ##
>> CONSUMES
>> diff --git a/MdeModulePkg/Bus/Pci/PciBusDxe/PciOptionRomSupport.c
>> b/MdeModulePkg/Bus/Pci/PciBusDxe/PciOptionRomSupport.c
>> index c2be85a906af..07236afd327d 100644
>> --- a/MdeModulePkg/Bus/Pci/PciBusDxe/PciOptionRomSupport.c
>> +++ b/MdeModulePkg/Bus/Pci/PciBusDxe/PciOptionRomSupport.c
>> @@ -678,6 +678,7 @@ ProcessOpRomImage (
>> MEDIA_RELATIVE_OFFSET_RANGE_DEVICE_PATH EfiOpRomImageNode;
>> VOID *Buffer;
>> UINTN BufferSize;
>> + EDKII_PECOFF_IMAGE_EMULATOR_PROTOCOL *PeCoffEmulator;
>> Indicator = 0;
>> @@ -693,6 +694,7 @@ ProcessOpRomImage (
>> }
>> ASSERT (((EFI_PCI_EXPANSION_ROM_HEADER *) RomBarOffset)->Signature ==
>> PCI_EXPANSION_ROM_HEADER_SIGNATURE);
>> + PeCoffEmulator = NULL;
>> do {
>> EfiRomHeader = (EFI_PCI_EXPANSION_ROM_HEADER *) RomBarOffset;
>> if (EfiRomHeader->Signature != PCI_EXPANSION_ROM_HEADER_SIGNATURE) {
>> @@ -716,7 +718,19 @@ ProcessOpRomImage (
>> // Skip the EFI PCI Option ROM image if its machine type is not
>> supported
>> //
>> if (!EFI_IMAGE_MACHINE_TYPE_SUPPORTED
>> (EfiRomHeader->EfiMachineType)) {
>> - goto NextImage;
>> + //
>> + // Check whether we have a PE/COFF emulator that supports this
>> image
>> + //
>> + if (PeCoffEmulator == NULL) {
>> + gBS->LocateProtocol (&gEdkiiPeCoffImageEmulatorProtocolGuid,
>> NULL,
>> + (VOID **)&PeCoffEmulator);
>> + }
>> + if (PeCoffEmulator == NULL ||
>> + !PeCoffEmulator->IsImageSupported (PeCoffEmulator,
>> + EfiRomHeader->EfiMachineType,
>> + EfiRomHeader->EfiSubsystem)) {
>> + goto NextImage;
>> + }
>
>
> Hi Ard,
>
> Could these be abstracted to a separate function like the PATCH 4/4 did?
>
Yes.
next prev parent reply other threads:[~2018-09-13 10:47 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-12 13:21 [PATCH 0/4] MdeModulePkg: add support for dispatching foreign arch PE/COFF images Ard Biesheuvel
2018-09-12 13:21 ` [PATCH 1/4] MdeModulePkg: introduce PE/COFF image emulator protocol Ard Biesheuvel
2018-09-13 10:05 ` Zeng, Star
2018-09-13 10:36 ` Ard Biesheuvel
2018-09-12 13:21 ` [PATCH 2/4] MdeModulePkg/DxeCore: invoke the emulator protocol for foreign images Ard Biesheuvel
2018-09-13 10:23 ` Zeng, Star
2018-09-13 10:37 ` Ard Biesheuvel
2018-09-12 13:21 ` [PATCH 3/4] MdeModulePkg/PciBusDxe: invoke PE/COFF emulator for foreign option ROMs Ard Biesheuvel
2018-09-13 10:24 ` Zeng, Star
2018-09-13 10:46 ` Ard Biesheuvel [this message]
2018-09-12 13:21 ` [PATCH 4/4] MdeModulePkg/UefiBootManagerLib: allow foreign Driver#### images Ard Biesheuvel
2018-09-12 14:55 ` [PATCH 0/4] MdeModulePkg: add support for dispatching foreign arch PE/COFF images Gao, Liming
2018-09-12 14:56 ` Ard Biesheuvel
2018-09-12 15:07 ` Carsey, Jaben
2018-09-12 15:11 ` Ard Biesheuvel
2018-09-12 15:10 ` Kinney, Michael D
2018-09-13 10:36 ` Ard Biesheuvel
2018-09-13 17:20 ` Kinney, Michael D
2018-09-15 13:28 ` Ard Biesheuvel
2018-09-17 4:03 ` Kinney, Michael D
2018-09-19 19:35 ` Andrew Fish
2018-09-19 20:43 ` Ard Biesheuvel
2018-09-21 18:51 ` Andrew Fish
2018-09-12 15:48 ` Carsey, Jaben
2018-09-12 18:50 ` Zimmer, Vincent
2018-09-13 0:47 ` Shi, Steven
2018-09-13 5:18 ` Ard Biesheuvel
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='CAKv+Gu8SjJvy9nVQgbMZOb3ixwj=PMvxD_n_67VT08ePSjtdow@mail.gmail.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