public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Laszlo Ersek <lersek@redhat.com>
To: Vladimir Olovyannikov <vladimir.olovyannikov@broadcom.com>,
	edk2-devel@lists.01.org
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Subject: Re: Using a generic PciHostBridgeDxe driver for a multi-PCIe-domain platform
Date: Tue, 30 May 2017 20:50:19 +0200	[thread overview]
Message-ID: <f8d800be-2ae2-540e-c237-bef0a371e5ab@redhat.com> (raw)
In-Reply-To: <1dbbb04c-b725-d9bb-0300-283029538588@redhat.com>

On 05/30/17 20:32, Laszlo Ersek wrote:
> On 05/30/17 18:23, Vladimir Olovyannikov wrote:
>> Hi,
>>
>> I've started PCIe stack implementation design for an armv8 aarch64
>> platform.
>> The platform's PCIe represents several host bridges, and each hostbridge
>> has one rootbridge.
>> They do not share any resources between each other.
>> Looking into the PciHostBridgeDxe implementation I can see that it
>> supports only one hostbridge, and there is a comment:
>> // Most systems in the world including complex servers have only one Host
>> Bridge.
>>
>> So in my case should I create my own PciHostBridgeDxe driver supporting
>> multiple hostbridges and do not use the Industry standard driver?
>> I am very new to it, and will appreciate any help or idea.
> 
> I think you can use PciHostBridgeDxe on this platform:
> 
> - Implement a PciHostBridgeLib instance (see
> <MdeModulePkg/Include/Library/PciHostBridgeLib.h>) that returns
> PCI_ROOT_BRIDGE objects with different Segment fields, from
> PciHostBridgeGetRootBridges().
> 
> - Implement a PciSegmentLib instance (see
> <MdePkg/Include/Library/PciSegmentLib.h>) that routes the config space
> addresses, encoded by the PCI_SEGMENT_LIB_ADDRESS() macro, according to
> your platform.
> 
> PciHostBridgeDxe and PciBusDxe should "just work" atop. To my
> understanding, PciBusDxe delegates all config space accesses to
> PciHostBridgeDxe, via EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL. And
> PciHostBridgeDxe delegates all config space accesses to the platform's
> PciSegmentLib.

A small addition. Assuming the general case, i.e. when you have a
different number of root bridges on each of several host bridges, you
still have to number all those root bridges incrementally, in a curious,
flat address space. And that address space is the PcieRoot(N) device
path node that is supposed to start the "DevicePath" member of each
PCI_ROOT_BRIDGE object that you return from PciHostBridgeGetRootBridges().

You can read about the PcieRoot() devpath node in the UEFI 2.6 spec.
Basically, you have

ACPI_HID_DEVICE_PATH.Header = <fill in as usual>;
ACPI_HID_DEVICE_PATH.HID = EFI_PNP_ID (0x0a08);
ACPI_HID_DEVICE_PATH.UID = <fill in incrementally across host bridges>;

The UID values used in these devpath nodes should preferably match the
UID values of the corresponding PCI Express Root Bridge objects
(=PNP0A08) that you expose in your ACPI tables (DSDT and/or SSDT).

Thanks
Laszlo


  reply	other threads:[~2017-05-30 18:49 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-30 16:23 Using a generic PciHostBridgeDxe driver for a multi-PCIe-domain platform Vladimir Olovyannikov
2017-05-30 16:35 ` Ard Biesheuvel
2017-05-30 16:49   ` Vladimir Olovyannikov
2017-05-30 17:34     ` Bill Paul
2017-05-30 18:11       ` Vladimir Olovyannikov
2017-05-31 15:02       ` Johnson, Brian (EXL - Eagan)
2017-05-31 18:07         ` Kinney, Michael D
2017-05-30 18:32 ` Laszlo Ersek
2017-05-30 18:50   ` Laszlo Ersek [this message]
2017-05-30 19:04     ` Vladimir Olovyannikov
2017-05-30 20:17       ` Laszlo Ersek
2017-05-30 20:23         ` Vladimir Olovyannikov

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=f8d800be-2ae2-540e-c237-bef0a371e5ab@redhat.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